Searched defs:ISPRINT (Results 1 – 4 of 4) sorted by relevance
35 #define ISPRINT(x) (ISLOWPRINT(x) || (((x) >= ' ') && ((x) <= 0x7e))) macro
96 #define ISPRINT(c) _sch_test(c, _sch_isprint) macro
281 #define ISPRINT(x) (isprint((int) ((unsigned char)x))) macro
147 #define ISPRINT(c) (isascii (c) && isprint (c)) macro