FENIX_libc/ctype/isxdigit.c

5 lines
118 B
C

#include <ctype.h>
int isxdigit(int c) {
return (isdigit(c) || (c >= 'A' && c <= 'F') || (c >= 'a' && c <= 'f'));
}