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

8 lines
161 B
C

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