Use free Windows DDK and compile with latest MinGW releases.
[reactos.git] / reactos / lib / msvcrt / wstring / wcscoll.c
1 #include <msvcrti.h>
2
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 int _wcsicoll(const wchar_t *a1,const wchar_t *a2)
11 {
12 /* FIXME: handle collates */
13 return _wcsicmp(a1,a2);
14 }
15
16 int _wcsncoll (const wchar_t *s1, const wchar_t *s2, size_t c)
17 {
18 /* FIXME: handle collates */
19 return wcsncmp(s1,s2,c);
20 }
21
22 int _wcsnicoll (const wchar_t *s1, const wchar_t *s2, size_t c)
23 {
24 /* FIXME: handle collates */
25 return _wcsnicmp(s1,s2,c);
26 }