toaruos/libc/ctype/islower.c

4 lines
58 B
C
Raw Normal View History

2018-05-04 06:17:32 +03:00
int islower(int c) {
return (c >= 'a' && c <= 'z');
}