ReactOS 0.4.16-dev-937-g7afcd2a
wcsncoll.cpp File Reference
#include <corecrt_internal.h>
#include <ctype.h>
#include <locale.h>
#include <string.h>
Include dependency graph for wcsncoll.cpp:

Go to the source code of this file.

Functions

int __cdecl _wcsncoll_l (const wchar_t *_string1, const wchar_t *_string2, size_t count, _locale_t plocinfo)
 
int __cdecl _wcsncoll (const wchar_t *_string1, const wchar_t *_string2, size_t count)
 

Function Documentation

◆ _wcsncoll()

int __cdecl _wcsncoll ( const wchar_t _string1,
const wchar_t _string2,
size_t  count 
)

Definition at line 83 of file wcsncoll.cpp.

88{
89 if (!__acrt_locale_changed())
90 {
91
92 /* validation section */
93 _VALIDATE_RETURN(_string1 != nullptr, EINVAL, _NLSCMPERROR);
94 _VALIDATE_RETURN(_string2 != nullptr, EINVAL, _NLSCMPERROR);
96 return wcsncmp(_string1, _string2, count);
97 }
98 else
99 {
100 return _wcsncoll_l(_string1, _string2, count, nullptr);
101 }
102
103}
#define EINVAL
Definition: acclib.h:90
#define _VALIDATE_RETURN(expr, errorcode, retexpr)
GLuint GLuint GLsizei count
Definition: gl.h:1545
#define INT_MAX
Definition: intsafe.h:150
#define _NLSCMPERROR
Definition: string.h:19
_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)
int __cdecl _wcsncoll_l(const wchar_t *_string1, const wchar_t *_string2, size_t count, _locale_t plocinfo)
Definition: wcsncoll.cpp:41

◆ _wcsncoll_l()

int __cdecl _wcsncoll_l ( const wchar_t _string1,
const wchar_t _string2,
size_t  count,
_locale_t  plocinfo 
)

Definition at line 41 of file wcsncoll.cpp.

47{
48 int ret;
49
50 if (!count)
51 {
52 return 0;
53 }
54
55 _LocaleUpdate _loc_update(plocinfo);
56
57 /* validation section */
58 _VALIDATE_RETURN(_string1 != nullptr, EINVAL, _NLSCMPERROR);
59 _VALIDATE_RETURN(_string2 != nullptr, EINVAL, _NLSCMPERROR);
61
62 if ( _loc_update.GetLocaleT()->locinfo->locale_name[LC_COLLATE] == nullptr )
63 {
64 return wcsncmp(_string1, _string2, count);
65 }
66
67 if ( 0 == (ret = __acrt_CompareStringW(
68 _loc_update.GetLocaleT()->locinfo->locale_name[LC_COLLATE],
70 _string1,
71 (int)count,
72 _string2,
73 (int)count)) )
74 {
75 errno = EINVAL;
76 return _NLSCMPERROR;
77 }
78
79 return (ret - 2);
80
81}
int __cdecl __acrt_CompareStringW(_In_ LPCWSTR _LocaleName, _In_ DWORD _DwCmpFlags, _In_CRT_NLS_string_(_CchCount1) PCWCH _LpString1, _In_ int _CchCount1, _In_CRT_NLS_string_(_CchCount2) PCWCH _LpString2, _In_ int _CchCount2)
#define LC_COLLATE
Definition: locale.h:18
_locale_t plocinfo
Definition: ismbbyte.cpp:75
#define errno
Definition: errno.h:18
int ret
#define SORT_STRINGSORT
Definition: winnls.h:185

Referenced by _wcsncoll().