xref: /reactos/sdk/lib/crt/wstring/wcscoll.c (revision 69931a4a)
1 /*
2  * COPYRIGHT:   See COPYING in the top level directory
3  * PROJECT:     ReactOS system libraries
4  * FILE:        lib/sdk/crt/wstring/wcscoll.c
5  * PURPOSE:     Unknown
6  * PROGRAMER:   Unknown
7  * UPDATE HISTORY:
8  *              25/11/05: Added license header
9  */
10 
11 #include <precomp.h>
12 
13 /*
14  * @unimplemented
15  */
16 int CDECL _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 /*
23  * @unimplemented
24  */
25 int CDECL _wcsnicoll (const wchar_t *s1, const wchar_t *s2, size_t c)
26 {
27   /* FIXME: handle collates */
28   return _wcsnicmp(s1,s2,c);
29 }
30