shithub: scc

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

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

int
islower(int c)
{
	return __ctype[(unsigned char) c] & _L;
}