summaryrefslogtreecommitdiffstats
path: root/core/string/char_utils.h
diff options
context:
space:
mode:
Diffstat (limited to 'core/string/char_utils.h')
-rw-r--r--core/string/char_utils.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/string/char_utils.h b/core/string/char_utils.h
index aa9bc198ca..fc2fbb95a1 100644
--- a/core/string/char_utils.h
+++ b/core/string/char_utils.h
@@ -92,7 +92,7 @@ static _FORCE_INLINE_ bool is_binary_digit(char32_t c) {
return (c == '0' || c == '1');
}
-static _FORCE_INLINE_ bool is_ascii_char(char32_t c) {
+static _FORCE_INLINE_ bool is_ascii_alphabet_char(char32_t c) {
return (c >= 'a' && c <= 'z') || (c >= 'A' && c <= 'Z');
}