FENIX_libc/ctype/islower.c

5 lines
75 B
C
Raw Permalink Normal View History

2020-12-13 10:55:41 +00:00
#include <ctype.h>
int islower(int c) {
return (c >= 'a' && c <= 'z');
}