musl/src/ctype/isgraph.c
2011-02-12 00:22:29 -05:00

4 lines
56 B
C

int isgraph(int c)
{
return (unsigned)c-0x21 < 0x5e;
}