fix getc - the classic error of trying to store EOF+0-255 in a char type..
[musl] / src / ctype / isprint.c
1 int isprint(int c)
2 {
3         return (unsigned)c-0x20 < 0x5f;
4 }