shithub: scc

ref: cbc79a2cfff4aa23e628158c2aa2b7035753cbe4
dir: /lib/c/isalpha.c/

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

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