shithub: scc

ref: 70df1fa850f6a1b3e18ce99cbe981462b8bb097f
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;
}