diff options
author | Clyne Sullivan <clyne@bitgloo.com> | 2023-03-18 12:40:46 -0400 |
---|---|---|
committer | Clyne Sullivan <clyne@bitgloo.com> | 2023-03-18 12:40:46 -0400 |
commit | d36bb13f52b3899fd0f57e38f00d97e2c3a0f627 (patch) | |
tree | e1a2780f42bf82c6fcbbd9c2219d55dbc8f03c53 /libalee/ctype.cpp | |
parent | 74753670d582e4ceeaba383e4ce360eb13004a35 (diff) |
-Wconversion
Diffstat (limited to 'libalee/ctype.cpp')
-rw-r--r-- | libalee/ctype.cpp | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/libalee/ctype.cpp b/libalee/ctype.cpp index a0c8dc1..547cd11 100644 --- a/libalee/ctype.cpp +++ b/libalee/ctype.cpp @@ -22,31 +22,15 @@ bool isspace(uint8_t c) { return c == ' ' || c == '\t' || c == '\r' || c == '\n'; } -bool isspace(char c) { - return isspace(static_cast<uint8_t>(c)); -} - bool isdigit(uint8_t c) { return c >= '0' && c <= '9'; } -bool isdigit(char c) { - return isdigit(static_cast<uint8_t>(c)); -} - bool isalpha(uint8_t c) { return isupper(c) || (c >= 'a' && c <= 'z'); } -bool isalpha(char c) { - return isalpha(static_cast<uint8_t>(c)); -} - bool isupper(uint8_t c) { return c >= 'A' && c <= 'Z'; } -bool isupper(char c) { - return isupper(static_cast<uint8_t>(c)); -} - |