toaruos/libc/ctype/isxdigit.c

4 lines
113 B
C
Raw Normal View History

2018-05-04 12:17:32 +09:00
int isxdigit(int c) {
return ((c >= '0' && c <= '9') || (c >= 'a' && c <= 'f') || (c >= 'A' && c <= 'F'));
}