Searched defs:isgraph (Results 1 – 7 of 7) sorted by relevance
50 int (isgraph)(int); variable
36 #define isgraph(C) ((C) >= 0x21 && (C) <= 0x7E) macro
60 #define isgraph(c) ((__ismask(c)&(_P|_U|_L|_D)) != 0) macro
93 isgraph(int c) in isgraph() function
91 #define isgraph(c) __sbistype((c), _CTYPE_G) macro
267 static __inline int isgraph(int c) in isgraph() function
1706 # define isgraph(c) (isprint(c) && (c != ' ')) macro