emulate SOCK_CLOEXEC and SOCK_NONBLOCK for old (pre-2.6.27) kernels
[oweals/musl.git] / src / ctype / isgraph.c
1 int isgraph(int c)
2 {
3         return (unsigned)c-0x21 < 0x5e;
4 }