Files
gbdk-2020/gbdk-lib/libc/islower.c
2022-02-20 00:56:40 +03:00

8 lines
161 B
C

#include <ctype.h>
#include <stdbool.h>
#include <stdint.h>
bool islower(char c) {
return ((uint8_t)((uint8_t)c - 'a') < ('z' - 'a' + 1)) ? true : false;
}