Searched defs:isgraph (Results 1 – 7 of 7) sorted by relevance
93 isgraph(int c) in isgraph() function
62 #define isgraph(c) ((__ctype + 1)[c] & (_P | _U | _L | _N)) macro
92 #define isgraph(c) __sbistype((c), _CTYPE_G) macro
67 #define isgraph(x) (isprint(x)&&!isblank(x)) macro
245 static __inline int isgraph(int c) in isgraph() function
37 #define isgraph(C) ((C) >= 0x21 && (C) <= 0x7E) macro
1669 # define isgraph(c) (isprint(c) && (c != ' ')) macro