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