ISBLANK
#define ISBLANK(c) (isascii (c) && isblank (c))
#define ISBLANK(c) ((c) == ' ' || (c) == '\t')