ReactOS 0.4.15-dev-7958-gcd0bb1a
wcscoll.c
Go to the documentation of this file.
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 */
16int 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 */
25int 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}
#define CDECL
Definition: compat.h:29
const GLubyte * c
Definition: glext.h:8905
struct S1 s1
struct S2 s2
_Check_return_ _CRTIMP int __cdecl wcsncmp(_In_reads_or_z_(_MaxCount) const wchar_t *_Str1, _In_reads_or_z_(_MaxCount) const wchar_t *_Str2, _In_ size_t _MaxCount)
_Check_return_ _CRTIMP int __cdecl _wcsnicmp(_In_reads_or_z_(_MaxCount) const wchar_t *_Str1, _In_reads_or_z_(_MaxCount) const wchar_t *_Str2, _In_ size_t _MaxCount)
int CDECL _wcsncoll(const wchar_t *s1, const wchar_t *s2, size_t c)
Definition: wcscoll.c:16
int CDECL _wcsnicoll(const wchar_t *s1, const wchar_t *s2, size_t c)
Definition: wcscoll.c:25