Lines Matching defs:str1
40 int strcmpiW( const WCHAR *str1, const WCHAR *str2 )
44 int ret = tolowerW(*str1) - tolowerW(*str2);
45 if (ret || !*str1) return ret;
46 str1++;
51 int strncmpiW( const WCHAR *str1, const WCHAR *str2, int n )
54 for ( ; n > 0; n--, str1++, str2++)
55 if ((ret = tolowerW(*str1) - tolowerW(*str2)) || !*str1) break;
59 int memicmpW( const WCHAR *str1, const WCHAR *str2, int n )
62 for ( ; n > 0; n--, str1++, str2++)
63 if ((ret = tolowerW(*str1) - tolowerW(*str2))) break;