From af51fb5bdfd9c338b7cf8b75b792e04a2667af5e Mon Sep 17 00:00:00 2001 From: Clyne Sullivan Date: Mon, 13 Nov 2023 09:13:32 -0500 Subject: add LIBALEE_SECTION; minor fixes --- libalee/ctype.hpp | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'libalee/ctype.hpp') diff --git a/libalee/ctype.hpp b/libalee/ctype.hpp index 499a90f..b0df174 100644 --- a/libalee/ctype.hpp +++ b/libalee/ctype.hpp @@ -43,6 +43,10 @@ constexpr inline bool isupper(uint8_t c) { return c >= 'A' && c <= 'Z'; } +constexpr inline bool islower(uint8_t c) { + return c >= 'a' && c <= 'z'; +} + constexpr inline bool isalpha(uint8_t c) { return isupper(c) || (c >= 'a' && c <= 'z'); } -- cgit v1.2.3