index
:
musl
awilfox/monotonic-dns
lookup-serv
master
posix-compliance
ustat
The musl libc tree (WIP / dev branches)
root
summary
refs
log
blame
commit
diff
log msg
author
committer
range
path:
root
/
src
/
ctype
/
isprint.c
blob: 504e66ed127f7d1f0cc5a9ca7456e45bf6283a9f (
plain
) (
tree
)
0b44a031
1
2
3
4
int
isprint
(
int
c
)
{
return
(
unsigned
)
c
-0x20
<
0x5f
;
}