shithub: scc

ref: 8eae1d47c3534a3ce3902a8895e80dbb4f90375a
dir: /lib/c/ctype/isdigit.c/

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

int
isdigit(int c)
{
	return (__ctype+1)[c] & (_D);
}