shithub: scc

ref: 5ac3a0d4c1a9d7e4d3912c4770084b885007aca6
dir: /src/libc/ctype/isxdigit.c/

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

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