index
:
sbos.git
master
Unnamed repository; edit this file 'description' to name the repository.
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
userland
/
libc
/
ctype
/
isprint.c
blob: 5504ebcf592a219093ec8d2d9f01dd1bfd1aa926 (
plain
)
1
2
3
4
5
#include <ctype.h> int isprint(int c) { return c > 0x20 && 0x7F != c; }