toaruos/libc/ctype/isupper.c

4 lines
58 B
C

int isupper(int c) {
return (c >= 'A' && c <= 'Z');
}