Commit f9cad774 authored by Uwe Bonnes's avatar Uwe Bonnes Committed by Alexandre Julliard

Implement minimal _stricoll.

parent 8d6a673c
......@@ -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 );
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment