Searched refs:ISLOWPRINT (Results 1 – 1 of 1) sorted by relevance
33 #define ISLOWPRINT(x) (((x) >= 9) && ((x) <= 0x0d)) macro35 #define ISPRINT(x) (ISLOWPRINT(x) || (((x) >= ' ') && ((x) <= 0x7e)))36 #define ISGRAPH(x) (ISLOWPRINT(x) || (((x) > ' ') && ((x) <= 0x7e)))