Common: Add utility function for case-insensitive string comparison.

This commit is contained in:
Admiral H. Curtiss
2022-05-31 02:06:42 +02:00
parent 7586fc8134
commit bdb19085c4
3 changed files with 12 additions and 11 deletions

View File

@ -264,4 +264,5 @@ inline char ToUpper(char ch)
}
void ToLower(std::string* str);
void ToUpper(std::string* str);
bool CaseInsensitiveEquals(std::string_view a, std::string_view b);
} // namespace Common