Searched defs:isgraph (Results 1 – 4 of 4) sorted by relevance
69 __ctype_inline int isgraph(int __c) in isgraph() function
60 def isgraph(c): return _ctoi(c) >= 33 and _ctoi(c) <= 126 function
60 def isgraph(c): return 33 <= _ctoi(c) <= 126 function
135 #define isgraph(c) do_not_use_isgraph_with_safe_ctype macro