shithub: scc

ref: 64688dc02ba9cc803d2b2a8b6030d73602ed18cc
dir: /lib/c/src/isalpha.c/

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

int
isalpha(int c)
{
	return (__ctype+1)[c] & (_U|_L);
}