shithub: scc

ref: 07c3fc899a4788187f52b99961c7ae1777201d5b
dir: /lib/c/ctype/isxdigit.c/

View raw version
#include <ctype.h>
#undef isxdigit

int
isxdigit(int c)
{
	return (__ctype+1)[c] & (_D|_X);
}