Searched defs:ispunct (Results 1 – 5 of 5) sorted by relevance
68 ispunct(int c) in ispunct() function
60 #define ispunct(c) ((__ctype + 1)[c] & _P) macro
95 #define ispunct(c) __sbistype((c), _CTYPE_P) macro
250 static __inline int ispunct(int c) in ispunct() function
38 #define ispunct(C) (((C) >= 0x21 && (C) <= 0x2F) || \ macro