Change up strcasecmp/strncasecmp to be more C++y

This commit is contained in:
iikorni
2026-08-30 16:40:12 -05:00
parent 7a697986c6
commit da2a9a8fbc
32 changed files with 351 additions and 790 deletions
+1 -1
View File
@@ -263,7 +263,7 @@ static int probe_umx (fshandle_t *f, const struct upkg_hdr *hdr,
if (read_typname(f, hdr, t, buf) < 0) return -1;
for (i = 0; mustype[i] != NULL; i++) {
if (!q_strcasecmp(buf, mustype[i])) {
if (!common::strcasecmp(buf, mustype[i])) {
t = i;
break;
}