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