20 Oct
2024
20 Oct
'24
4:52 p.m.
Piotr Caban (@piotr) commented about dlls/msvcrt/tests/string.c:
+ { "\xce\xac", "\xc4\xe1" }, + { "\xb8\xdf", "\xb8\xdb" }, + { "\xb9", "\xa5" }, + }; + _locale_t locale; + int ret, i; + + if (!p__strnicmp_l) + { + win_skip("_strnicmp_l isn't available.\n"); + return; + } + + for (i = 0; i < ARRAY_SIZE(tests); i++) + { + ret = _strnicmp_l(tests[i].str1, tests[i].str2, INT_MAX, 0);
ret = p__strnicmp_l(tests[i].str1, tests[i].str2, INT_MAX, 0);
-- https://gitlab.winehq.org/wine/wine/-/merge_requests/6703#note_85543