shithub: scc

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