shithub: scc

ref: ad726c612004cf5b648f493c17ac90a0d8b0c05e
dir: /lib/c/islower.c/

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

int
islower(int c)
{
	return (__ctype+1)[c] & _L;
}