Searched defs:iscntrl (Results 1 – 4 of 4) sorted by relevance
59 __ctype_inline int iscntrl(int __c) in iscntrl() function
58 def iscntrl(c): return _ctoi(c) <= 31 or _ctoi(c) == 127 function
58 def iscntrl(c): return 0 <= _ctoi(c) <= 31 or _ctoi(c) == 127 function
131 #define iscntrl(c) do_not_use_iscntrl_with_safe_ctype macro