Files
semi-libc/src/ctype/islower.c
T

8 lines
88 B
C

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