mirror of
https://github.com/fluencelabs/musl
synced 2025-05-20 19:21:34 +00:00
5 lines
56 B
C
5 lines
56 B
C
|
int isprint(int c)
|
||
|
{
|
||
|
return (unsigned)c-0x20 < 0x5f;
|
||
|
}
|