shithub: scc

ref: 3cd935a51ca42e36e652f5519a2450c34004560a
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);
}