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

Go to the source code of this file.

Functions

int __cdecl _wcsnicoll_l (const wchar_t *_string1, const wchar_t *_string2, size_t count, _locale_t plocinfo)
 
int __cdecl _wcsnicoll (const wchar_t *_string1, const wchar_t *_string2, size_t count)
 

Function Documentation

◆ _wcsnicoll()

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

Definition at line 84 of file wcsnicol.cpp.

89{
90 if (!__acrt_locale_changed())
91 {
92 /* validation section */
93 _VALIDATE_RETURN(_string1 != nullptr, EINVAL, _NLSCMPERROR);
94 _VALIDATE_RETURN(_string2 != nullptr, EINVAL, _NLSCMPERROR);
96
97 return __ascii_wcsnicmp(_string1, _string2, count);
98 }
99 else
100 {
101 return _wcsnicoll_l(_string1, _string2, count, nullptr);
102 }
103}
#define EINVAL
Definition: acclib.h:90
_Check_return_ int __cdecl __ascii_wcsnicmp(_In_reads_or_z_(count) const wchar_t *lhs, _In_reads_or_z_(count) const wchar_t *rhs, _In_ size_t count)
#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
int __cdecl _wcsnicoll_l(const wchar_t *_string1, const wchar_t *_string2, size_t count, _locale_t plocinfo)
Definition: wcsnicol.cpp:43

◆ _wcsnicoll_l()

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

Definition at line 43 of file wcsnicol.cpp.

49{
50 int ret;
51
52 if (!count)
53 {
54 return 0;
55 }
56
57 /* validation section */
58 _VALIDATE_RETURN(_string1 != nullptr, EINVAL, _NLSCMPERROR);
59 _VALIDATE_RETURN(_string2 != nullptr, EINVAL, _NLSCMPERROR);
61
62 _LocaleUpdate _loc_update(plocinfo);
63
64 if ( _loc_update.GetLocaleT()->locinfo->locale_name[LC_COLLATE] == nullptr )
65 {
66 return __ascii_wcsnicmp(_string1, _string2, count);
67 }
68
69 if ( 0 == (ret = __acrt_CompareStringW(
70 _loc_update.GetLocaleT()->locinfo->locale_name[LC_COLLATE],
72 _string1,
73 (int)count,
74 _string2,
75 (int)count)) )
76 {
77 errno = EINVAL;
78 return _NLSCMPERROR;
79 }
80
81 return (ret - 2);
82}
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 NORM_IGNORECASE
Definition: winnls.h:178
#define SORT_STRINGSORT
Definition: winnls.h:185

Referenced by _wcsnicoll().