[ox/std] Rename caseInsensitiveEquals to caseInsensitiveStrCmp

This commit is contained in:
2026-05-17 15:55:35 -05:00
parent d1a3538e9a
commit de859bef77
+1 -1
View File
@@ -42,7 +42,7 @@ constexpr char toUpper(char const c) noexcept {
}
[[nodiscard]]
constexpr int caseInsensitiveEquals(ox::StringViewCR a, ox::StringViewCR b) noexcept {
constexpr int caseInsensitiveStrCmp(StringViewCR a, StringViewCR b) noexcept {
auto const sz = ox::min(a.size(), b.size());
for (size_t i{}; i < sz; ++i) {
auto const ac = toUpper(a[i]);