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
/
isdigit.c
blob: f645093b66f598a30c69140e5c241c5a2c6be8c3 (
plain
)
1
2
3
4
5
6
#include
<lib.h>
int
isdigit
(
int
c
)
{
return
c
>=
'0'
&&
c
<=
'9'
;
}