ReactOS 0.4.15-dev-7942-gd23573b
wcscoll.c File Reference
#include <precomp.h>
Include dependency graph for wcscoll.c:

Go to the source code of this file.

Functions

int CDECL _wcsncoll (const wchar_t *s1, const wchar_t *s2, size_t c)
 
int CDECL _wcsnicoll (const wchar_t *s1, const wchar_t *s2, size_t c)
 

Function Documentation

◆ _wcsncoll()

int CDECL _wcsncoll ( const wchar_t s1,
const wchar_t s2,
size_t  c 
)

Definition at line 16 of file wcscoll.c.

17{
18 /* FIXME: handle collates */
19 return wcsncmp(s1,s2,c);
20}
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)

◆ _wcsnicoll()

int CDECL _wcsnicoll ( const wchar_t s1,
const wchar_t s2,
size_t  c 
)

Definition at line 25 of file wcscoll.c.

26{
27 /* FIXME: handle collates */
28 return _wcsnicmp(s1,s2,c);
29}
_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)