aboutsummaryrefslogtreecommitdiffstats
path: root/libalee/ctype.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'libalee/ctype.cpp')
-rw-r--r--libalee/ctype.cpp16
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));
-}
-