Searched defs:isprint (Results 1 – 5 of 5) sorted by relevance
98 isprint(Rune r) in isprint() function
20 int isprint(int c){ return (_ctype+1)[c]&(_ISpunct|_ISupper|_ISlower|_ISdigit|_ISblank); } in isprint() function
45 #define isprint(c) (_ctype[(unsigned char)(c)]&(_ISpunct|_ISupper|_ISlower|_ISdigit|_ISblank)) macro
23 #define isprint(c) (_ctype[(unsigned char)(c)]&(_P|_U|_L|_N|_B)) macro
21 #define isprint(c) ((_cbtype_+1)[c]&(_P|_U|_L|_N)) macro