shithub: scc

ref: bd868e6e88690ee8521e3c3738f908b6557a1ac1
dir: /lib/c/src/isalpha.c/

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

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