Implement minimal _stricoll.

This commit is contained in:
Uwe Bonnes 2005-05-23 10:27:58 +00:00 committed by Alexandre Julliard
parent 8d6a673cf7
commit f9cad774dc
2 changed files with 10 additions and 1 deletions

View File

@ -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

View File

@ -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 );
}