sync code

This commit is contained in:
Ned Wright
2025-08-08 11:06:28 +00:00
parent dd19bf6158
commit da20943c09
145 changed files with 4157 additions and 1016 deletions

View File

@@ -394,7 +394,7 @@ Buffer::isEqualLowerCase(const Buffer &buf) const
{
if (len != buf.size()) return false;
for (uint i = 0; i < len; i++) {
if (tolower((*this)[i]) != buf[i]) return false;
if (tolower((*this)[i]) != tolower(buf[i])) return false;
}
return true;
}