shithub: scc

ref: 15d3cccf394c8c68e3d6e8311c3b50910ad23f91
dir: /src/libc/ctype/isdigit.c/

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

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