ref: 529d80a36c7f5af3234619c8ba51f1c6a440fd9d
dir: /libc/src/islower.c/
/* See LICENSE file for copyright and license details. */
#define __USE_MACROS
#include <ctype.h>
#undef islower
int
islower(int c)
{
return _ctype[(unsigned char) c] & _L;
}