fxlibc/src/libc/ctype/isgraph.c

8 lines
91 B
C

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