https://bugs.winehq.org/show_bug.cgi?id=55694 --- Comment #1 from Milan Hauth <milahu(a)gmail.com> --- implementations of _stricmp and _stricmp_l https://github.com/ojdkbuild/tools_toolchain_sdk10_1607/blob/master/Source/1... https://github.com/search?q=path%3A**%2Fstricmp.cpp&type=code extern "C" int __cdecl _stricmp ( const char * dst, const char * src ) extern "C" int __cdecl _stricmp_l ( const char * dst, const char * src, _locale_t plocinfo ) implementations of _wcsicmp and _wcsicmp_l https://github.com/ojdkbuild/tools_toolchain_sdk10_1607/blob/master/Source/1... https://github.com/search?q=path%3A**%2Fwcsicmp.cpp&type=code extern "C" int __cdecl _wcsicmp ( const wchar_t * dst, const wchar_t * src ) extern "C" int __cdecl _wcsicmp_l ( const wchar_t * dst, const wchar_t * src, _locale_t plocinfo ) implementations of _mbsicmp and _mbsicmp_l https://github.com/ojdkbuild/tools_toolchain_sdk10_1607/blob/master/Source/1... https://github.com/search?q=path%3A**%2Fmbsicmp.cpp&type=code extern "C" int (__cdecl _mbsicmp)( const unsigned char *s1, const unsigned char *s2 ) extern "C" int __cdecl _mbsicmp_l( const unsigned char *s1, const unsigned char *s2, _locale_t plocinfo ) -- Do not reply to this email, post in Bugzilla using the above URL to reply. You are receiving this mail because: You are watching all bug changes.