98979d1e898b996d1ab17b8fcdb92d3c56a269a3
[musl] / isgraph.c
1 int isgraph(int c)
2 {
3         return (unsigned)c-0x21 < 0x5e;
4 }