diff options
Diffstat (limited to 'libalee/ctype.hpp')
-rw-r--r-- | libalee/ctype.hpp | 19 |
1 files changed, 15 insertions, 4 deletions
diff --git a/libalee/ctype.hpp b/libalee/ctype.hpp index 5842dfb..878c747 100644 --- a/libalee/ctype.hpp +++ b/libalee/ctype.hpp @@ -25,10 +25,21 @@ #include <cstdint> -bool isspace(uint8_t); -bool isdigit(uint8_t); -bool isalpha(uint8_t); -bool isupper(uint8_t); +constexpr inline bool isspace(uint8_t c) { + return c == ' ' || c == '\t' || c == '\r' || c == '\n'; +} + +constexpr inline bool isdigit(uint8_t c) { + return c >= '0' && c <= '9'; +} + +constexpr inline bool isupper(uint8_t c) { + return c >= 'A' && c <= 'Z'; +} + +constexpr inline bool isalpha(uint8_t c) { + return isupper(c) || (c >= 'a' && c <= 'z'); +} #endif // ALEEFORTH_CTYPE_HPP |