504e66ed127f7d1f0cc5a9ca7456e45bf6283a9f
[musl] / isprint.c
1 int isprint(int c)
2 {
3         return (unsigned)c-0x20 < 0x5f;
4 }