fxlibc/src/libc/ctype/iscntrl.c

8 lines
91 B
C

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