shithub: scc

ref: 7a5f84aadb1fceda9f03fcebe3449f3ac0004f15
dir: /lib/c/src/isdigit.c/

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

int
isdigit(int c)
{
	return __ctype[(unsigned char) c] & (_D);
}