Implement minimal _stricoll.
This commit is contained in:
parent
8d6a673cf7
commit
f9cad774dc
|
@ -453,7 +453,7 @@
|
|||
@ cdecl _strdup(str)
|
||||
@ cdecl _strerror(long)
|
||||
@ cdecl _stricmp(str str) strcasecmp
|
||||
@ stub _stricoll #(str str)
|
||||
@ cdecl _stricoll(str str) MSVCRT__stricoll
|
||||
@ cdecl _strlwr(str) ntdll._strlwr
|
||||
@ stub _strncoll #(str str long)
|
||||
@ cdecl _strnicmp(str str long) strncasecmp
|
||||
|
|
|
@ -112,3 +112,12 @@ void MSVCRT__swab(char* src, char* dst, int len)
|
|||
}
|
||||
}
|
||||
}
|
||||
/*********************************************************************
|
||||
* _stricoll (MSVCRT.@)
|
||||
*/
|
||||
INT MSVCRT__stricoll( const char* str1, const char* str2 )
|
||||
{
|
||||
/* FIXME: handle collates */
|
||||
TRACE("str1 %s str2 %s\n", debugstr_a(str1), debugstr_a(str2));
|
||||
return lstrcmpiA( str1, str2 );
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue