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: e6a3d0e9763dbfb8b78c12c976d38ff554d76407 (
plain
)
1
2
3
#include <ctype.h> int isprint(int c) { return c > 0x20 && 0x7F != c; }