toaruos/libc/ctype/isdigit.c
2018-05-04 12:17:32 +09:00

4 lines
55 B
C

int isdigit(int c) {
return (c >= '0' && c <= '9');
}