From 40a9bb9c0246eabd91d7abf98099607e024bb61c Mon Sep 17 00:00:00 2001 From: GAMMACASE <31375974+GAMMACASE@users.noreply.github.com> Date: Fri, 4 Oct 2024 00:49:05 +0300 Subject: [PATCH] Add V_strcasecmp & V_strncasecmp back --- public/tier1/strtools.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/public/tier1/strtools.h b/public/tier1/strtools.h index 2886cc65..7a063e7a 100644 --- a/public/tier1/strtools.h +++ b/public/tier1/strtools.h @@ -219,6 +219,8 @@ inline bool V_isspace( int c ) #define V_stricmp_n(s1, s2) V_stricmp_fast_NegativeForUnequal((s1), (s2) ) #define V_strnicmp(s1, s2, count) _V_strnicmp_fast ((s1), (s2), (count)) #define V_wcsnicmp(s1, s2, symbols) V_wcsnicmp_cch ((s1), (s2), (symbols)) +#define V_strcasecmp(s1, s2) V_stricmp ((s1), (s2)) +#define V_strncasecmp(s1, s2, count) V_strnicmp ((s1), (s2), (count)) #define V_strstr(s1, search) V_tier0_strstr ((s1), (search))