index
:
musl
master
rs-1.0
musl - an implementation of the standard library for Linux-based systems
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
src
/
ctype
/
isprint.c
blob: 504e66ed127f7d1f0cc5a9ca7456e45bf6283a9f (
plain
) (
blame
)
1
2
3
4
int isprint(int c) { return (unsigned)c-0x20 < 0x5f; }