index
:
comus
ata
documentationBranch
fat32
forkman
main
old
pcie
tarBranch
tarfs_freya
uefi
user
its not just a kernel
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
kernel
/
lib
/
isprint.c
blob: e5582dcff2604286241c2e06a8ae8c40ae18fe58 (
plain
)
1
2
3
4
5
6
#include
<lib.h>
int
isprint
(
int
c
)
{
return
((
unsigned
)(
c
-
0x20
)
<=
(
0x7e
-
0x20
));
}