toaruos/libc/ctype/islower.c
2018-05-04 12:17:32 +09:00

4 lines
58 B
C

int islower(int c) {
return (c >= 'a' && c <= 'z');
}