Searched defs:isgraph (Results 1 – 3 of 3) sorted by relevance
18 int isgraph(int c){ return (_ctype+1)[c]&(_ISpunct|_ISupper|_ISlower|_ISdigit); } in isgraph() function
43 #define isgraph(c) (_ctype[(unsigned char)(c)]&(_ISpunct|_ISupper|_ISlower|_ISdigit)) macro
24 #define isgraph(c) (_ctype[(unsigned char)(c)]&(_P|_U|_L|_N)) macro