ISBLANK
#define ISBLANK(ch) ((ch).chars[0] == L' ' && (ch).chars[1] == L'\0')
#define ISBLANK(ch) (CharOf(ch) == ' ')