Searched defs:ispunct (Results 1 – 3 of 3) sorted by relevance
29 #define ispunct(c) ((__ismask(c)&(_P)) != 0) macro
63 def ispunct(c): return isgraph(c) and not isalnum(c) function