update for HEAD-2003091401
[reactos.git] / lib / msvcrt / wstring / 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  * @unimplemented
15  */
16 int _wcsicoll(const wchar_t *a1,const wchar_t *a2)
17 {
18   /* FIXME: handle collates */
19   return _wcsicmp(a1,a2);
20 }
21
22 /*
23  * @unimplemented
24  */
25 int _wcsncoll (const wchar_t *s1, const wchar_t *s2, size_t c)
26 {
27   /* FIXME: handle collates */
28   return wcsncmp(s1,s2,c);
29 }
30
31 /*
32  * @unimplemented
33  */
34 int _wcsnicoll (const wchar_t *s1, const wchar_t *s2, size_t c)
35 {
36   /* FIXME: handle collates */
37   return _wcsnicmp(s1,s2,c);
38 }