fxlibc/src/libc/ctype/isprint.c

8 lines
91 B
C

#include <ctype.h>
#undef isprint
int isprint(int c)
{
return (c >= 32) && (c < 0x7f);
}