musl/src/ctype/islower.c
2011-02-12 00:22:29 -05:00

7 lines
88 B
C

#include <ctype.h>
#undef islower
int islower(int c)
{
return (unsigned)c-'a' < 26;
}