Searched defs:ispunct (Results 1 – 6 of 6) sorted by relevance
21 int ispunct(int c){ return (_ctype+1)[c]&_ISpunct; } in ispunct() function
46 #define ispunct(c) (_ctype[(unsigned char)(c)]&_ISpunct) macro
21 #define ispunct(c) (_ctype[(unsigned char)(c)]&_P) macro
19 #define ispunct(c) ((_cbtype_+1)[c]&_P) macro
8 #define ispunct(c) (c=='|' || c=='&' || c==';' || c=='<' || \ macro
212 int ispunct(int c) in ispunct() function