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