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
commit bdb19085c4
No known key found for this signature in database
GPG key ID: F051B4C4044F33FB
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