#include <corecrt_internal.h>
#include <ctype.h>
#include <corecrt_internal_securecrt.h>
#include <locale.h>
#include <string.h>
Go to the source code of this file.
◆ _wcslwr()
Definition at line 49 of file wcslwr.cpp.
52{
53 if (!__acrt_locale_changed())
54 {
56
57
59
61 {
62 if (
L'A' <= *
p && *
p <=
L'Z')
64 }
65 } else {
67 return wsrc;
68 }
69
70 return(wsrc);
71}
#define _VALIDATE_RETURN(expr, errorcode, retexpr)
◆ _wcslwr_l()
◆ _wcslwr_s()
◆ _wcslwr_s_l()
Definition at line 174 of file wcslwr.cpp.
179{
180 _LocaleUpdate _loc_update(
plocinfo);
181
183}
static errno_t __cdecl _wcslwr_s_l_stat(_Inout_updates_z_(sizeInWords) wchar_t *wsrc, size_t sizeInWords, _locale_t plocinfo)
◆ _wcslwr_s_l_stat()
Definition at line 93 of file wcslwr.cpp.
98{
99
101 int dstsize;
103
104
108 {
111 }
113
115 {
116 for (
p = wsrc ; *
p ;
p++ )
117 {
118 if ( (*
p >= (
wchar_t)
L'A') && (*
p <= (
wchar_t)
L'Z') )
119 {
120 *
p -=
static_cast<wchar_t>(
L'A' -
L'a');
121 }
122 }
123
124 return 0;
125 }
126
127
131 wsrc,
132 -1,
133 nullptr,
134 0
135 )) == 0 )
136 {
139 }
140
141 if (sizeInWords < (size_t)dstsize)
142 {
145 }
146
147
148 __crt_scoped_stack_ptr<wchar_t> const wdst(_malloca_crt_t(wchar_t, dstsize));
149 if (!wdst)
150 {
153 }
154
155
159 wsrc,
160 -1,
161 wdst.get(),
162 dstsize
163 ) != 0)
164 {
165
166 return wcscpy_s(wsrc, sizeInWords, wdst.get());
167 }
168 else
169 {
171 }
172}
int __cdecl __acrt_LCMapStringW(LPCWSTR const locale_name, DWORD const map_flags, LPCWSTR const source, int source_count, LPWSTR const destination, int const destination_count)
#define _RETURN_DEST_NOT_NULL_TERMINATED(_String, _Size)
#define _RETURN_BUFFER_TOO_SMALL(_String, _Size)
#define _RESET_STRING(_String, _Size)
GLint const GLchar GLint stringlen
#define _VALIDATE_RETURN_ERRCODE(expr, errorcode)
#define wcscpy_s(d, l, s)
size_t __cdecl wcsnlen(wchar_t const *const string, size_t const maximum_count)
Referenced by _wcslwr_s_l().