isprint
#define isprint(c) __sbistype((c), _CTYPE_R)
#undef isprint
isprint(int c)
#define isprint(c) ((c) >= ' ' && (c) <= '~')