shithub: scc

ref: bb3a3db29db8b3c84e54aa820fe3f37b2b979794
dir: /lib/c/isdigit.c/

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

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