shithub: scc

ref: 23aa25d545c7f63321afd86478a77537a0ad66d8
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);
}