iseol
#define iseol(ch) ((ch) == '\n' || (ch) == '\r' || (ch) == '\f')
#define iseol(c) (c == 0 || c == '\n' || strchr(com, c) != NULL)