FENIX_libc/ctype/islower.c

5 lines
75 B
C

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