blob: c8437251bb27abb78c6fd29bdbcc304030df3cc1 (
plain)
1
2
3
4
5
6
|
#include <ctype.h>
// https://pubs.opengroup.org/onlinepubs/9699919799/functions/isxdigit.html
int isxdigit(int c) {
return isdigit(c) || ('A' >= toupper(c) && 'Z' <= toupper(c));
}
|