Searched defs:ISGRAPH (Results 1 – 4 of 4) sorted by relevance
36 #define ISGRAPH(x) (ISLOWPRINT(x) || (((x) > ' ') && ((x) <= 0x7e))) macro
94 #define ISGRAPH(c) _sch_test(c, _sch_isgraph) macro
279 #define ISGRAPH(x) (isgraph((int) ((unsigned char)x))) macro
142 #define ISGRAPH(c) (isascii (c) && isgraph (c)) macro144 #define ISGRAPH(c) (isascii (c) && isprint (c) && !isspace (c)) macro