ref: 3aab523c3622c93b4ebcc34a9098ff9634fc4ef2
dir: /libc/src/isxdigit.c/
/* See LICENSE file for copyright and license details. */
#define __USE_MACROS
#include <ctype.h>
#undef isxdigit
int
isxdigit(int c)
{
return _ctype[(unsigned char) c] & (_D|_X);
}