ISGRAPH
#define ISGRAPH(c) (isascii (c) && isgraph (c))
#define ISGRAPH(c) (isascii (c) && isprint (c) && !isspace (c))
#define ISGRAPH(flags, c) \