1
0
mirror of https://github.com/godotengine/godot.git synced 2025-12-06 17:25:19 +00:00

Rename internal is_ascii_char to is_ascii_alphabet_char

This commit is contained in:
Aaron Franke
2024-04-20 02:36:41 -07:00
parent 4a0160241f
commit b1f5e9fe3a
7 changed files with 10 additions and 10 deletions

View File

@@ -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');
}