shithub: scc

ref: 08c48f8d3da19e4f1a70e8da9bdef305002666de
dir: /src/libc/ctype/isalpha.c/

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

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