fxlibc/src/libc/ctype/islower.c

8 lines
90 B
C

#include <ctype.h>
#undef islower
int islower(int c)
{
return (c >= 'a' && c <= 'z');
}