update for HEAD-2003091401
[reactos.git] / lib / crtdll / wchar / wcscoll.c
1
2 #include <msvcrt/string.h>
3
4 /*
5  * @unimplemented
6  */
7 int wcscoll(const wchar_t *a1,const wchar_t *a2)
8 {
9         /* FIXME: handle collates */
10         return wcscmp(a1,a2);
11 }
12
13
14 /*
15  * @unimplemented
16  */
17 int _wcsicoll(const wchar_t *a1,const wchar_t *a2)
18 {
19         /* FIXME: handle collates */
20         return _wcsicmp(a1,a2);
21 }
22