Searched defs:isgraph (Results 1 – 6 of 6) sorted by relevance
127 inline int isgraph(int c) { return (__ctype_mask[c] & _ISGRAPH); } in isgraph() function158 #define isgraph(c) (__ctype_mask[(int)(c)] & _ISGRAPH) macro170 #define isgraph(c) ((__ctype + 1)[(int)(c)] & (_P | _U | _L | _N)) macro
148 int isgraph(c) in isgraph() function
62 #define isgraph(c) ((__ctype + 1)[c] & (_P | _U | _L | _N)) macro
50 #define isgraph(c) ((_ctype_+1)[c]&(_P|_U|_L|_N)) macro
71 #define isgraph(c) ((_ctype_ + 1)[c] & (_P | _U | _L | _N)) macro
1669 # define isgraph(c) (isprint(c) && (c != ' ')) macro