util/CharUtil: add IsUpperAlphaNumericASCII()

This commit is contained in:
Max Kellermann 2024-01-13 22:54:17 +01:00 committed by Max Kellermann
parent aef2c5dc14
commit 7f60acdfdd
1 changed files with 6 additions and 0 deletions

View File

@ -97,6 +97,12 @@ IsAlphaNumericASCII(char ch) noexcept
return IsAlphaASCII(ch) || IsDigitASCII(ch);
}
constexpr bool
IsUpperAlphaNumericASCII(char ch) noexcept
{
return IsUpperAlphaASCII(ch) || IsDigitASCII(ch);
}
constexpr bool
IsLowerAlphaNumericASCII(char ch) noexcept
{