35 if (s1 ==
nullptr || s2 ==
nullptr)
43 return ((
wchar_t*)s1);
50 while (*s1 != L
'\0' && towupper(*s1) != towupper(*s2))
65 for (sc1 = s1, sc2 = s2; ; )
72 return ((
wchar_t*)s1);
78 if (towupper(*sc1) != towupper(*sc2))
The namespace containing all the "helper" functions in the C++ code.
wchar_t * wcsstri(const wchar_t *s1, const wchar_t *s2)
Do case-insensitive search for string 2 (s2) in string 1 (s1). Similar to the C library's wcsstr().
Declaration of the wcsstri function, case-insensitive string search for wide character strings.