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
/
isgraph.c
blob: 28bf695b7e33fcdc22264df2a532c2222ec0b763 (
plain
)
1
2
3
4
5
#include <ctype.h> int isgraph(int c) { return (unsigned)c - 0x21 < 0x5e; }