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

Go to the source code of this file.

Functions

char *__cdecl _strlwr_l (char *string, _locale_t plocinfo)
 
char *__cdecl _strlwr (char *string)
 
static errno_t __cdecl _strlwr_s_l_stat (_Inout_updates_z_(sizeInBytes) char *const string, size_t const sizeInBytes, _locale_t const plocinfo) throw ()
 
errno_t __cdecl _strlwr_s_l (char *string, size_t sizeInBytes, _locale_t plocinfo)
 
errno_t __cdecl _strlwr_s (char *string, size_t sizeInBytes)
 

Function Documentation

◆ _strlwr()

char *__cdecl _strlwr ( char string)

Definition at line 54 of file strlwr.cpp.

57{
58 if (!__acrt_locale_changed())
59 {
60 char * cp;
61
62 /* validation section */
63 _VALIDATE_RETURN(string != nullptr, EINVAL, nullptr);
64
65 for (cp=string; *cp; ++cp)
66 {
67 if ('A' <= *cp && *cp <= 'Z')
68 *cp += 'a' - 'A';
69 }
70
71 return(string);
72 }
73 else
74 {
75 _strlwr_s_l(string, (size_t)(-1), nullptr);
76 return string;
77 }
78}
#define EINVAL
Definition: acclib.h:90
#define _VALIDATE_RETURN(expr, errorcode, retexpr)
POINT cp
Definition: magnifier.c:59
char string[160]
Definition: util.h:11
_strlwr_s_l
Definition: string.h:249

◆ _strlwr_l()

char *__cdecl _strlwr_l ( char string,
_locale_t  plocinfo 
)

Definition at line 45 of file strlwr.cpp.

49{
50 _strlwr_s_l(string, (size_t)(-1), plocinfo);
51 return string;
52}
_locale_t plocinfo
Definition: ismbbyte.cpp:75

◆ _strlwr_s()

errno_t __cdecl _strlwr_s ( char string,
size_t  sizeInBytes 
)

Definition at line 200 of file strlwr.cpp.

204{
205 return _strlwr_s_l(string, sizeInBytes, nullptr);
206}
size_t sizeInBytes
Definition: mbslwr.cpp:119

◆ _strlwr_s_l()

errno_t __cdecl _strlwr_s_l ( char string,
size_t  sizeInBytes,
_locale_t  plocinfo 
)

Definition at line 188 of file strlwr.cpp.

193{
194
195 _LocaleUpdate _loc_update(plocinfo);
196
197 return _strlwr_s_l_stat(string, sizeInBytes, _loc_update.GetLocaleT());
198}
static errno_t __cdecl _strlwr_s_l_stat(_Inout_updates_z_(sizeInBytes) char *const string, size_t const sizeInBytes, _locale_t const plocinfo)
Definition: strlwr.cpp:107

◆ _strlwr_s_l_stat()

static errno_t __cdecl _strlwr_s_l_stat ( _Inout_updates_z_(sizeInBytes) char *const  string,
size_t const  sizeInBytes,
_locale_t const  plocinfo 
)
throw (
)
static

Definition at line 107 of file strlwr.cpp.

112{
113
114 int dstsize; /* size of dst string buffer (include null) */
115 size_t stringlen;
116
117 /* validation section */
118 _VALIDATE_RETURN_ERRCODE(string != nullptr, EINVAL);
119 stringlen = strnlen(string, sizeInBytes);
120 if (stringlen >= sizeInBytes)
121 {
122 _RESET_STRING(string, sizeInBytes);
124 }
125 _FILL_STRING(string, sizeInBytes, stringlen + 1);
126
127 if ( plocinfo->locinfo->locale_name[LC_CTYPE] == nullptr ) {
128 char *cp; /* traverses string for C locale conversion */
129
130 for ( cp = string ; *cp ; ++cp )
131 if ( ('A' <= *cp) && (*cp <= 'Z') )
132 *cp -= 'A' - 'a';
133
134 return 0;
135 } /* C locale */
136
137 /* Inquire size of dst string */
138 if ( 0 == (dstsize = __acrt_LCMapStringA(
139 plocinfo,
140 plocinfo->locinfo->locale_name[LC_CTYPE],
142 string,
143 -1,
144 nullptr,
145 0,
146 plocinfo->locinfo->_public._locale_lc_codepage,
147 TRUE )) )
148 {
149 errno = EILSEQ;
150 return errno;
151 }
152
153 if (sizeInBytes < (size_t)dstsize)
154 {
155 _RESET_STRING(string, sizeInBytes);
157 }
158
159 /* Allocate space for dst */
160 __crt_scoped_stack_ptr<char> dst(_malloca_crt_t(char, dstsize));
161 if (!dst)
162 {
163 errno = ENOMEM;
164 return errno;
165 }
166
167 /* Map src string to dst string in alternate case */
169 plocinfo,
170 plocinfo->locinfo->locale_name[LC_CTYPE],
172 string,
173 -1,
174 dst.get(),
175 dstsize,
176 plocinfo->locinfo->_public._locale_lc_codepage,
177 TRUE ) != 0)
178 {
179 /* copy dst string to return string */
180 return strcpy_s(string, sizeInBytes, dst.get());
181 }
182 else
183 {
184 return errno = EILSEQ;
185 }
186}
int __cdecl __acrt_LCMapStringA(_locale_t const plocinfo, PCWSTR const LocaleName, DWORD const dwMapFlags, PCCH const lpSrcStr, int const cchSrc, PCH const lpDestStr, int const cchDest, int const code_page, BOOL const bError)
#define ENOMEM
Definition: acclib.h:84
#define _RETURN_DEST_NOT_NULL_TERMINATED(_String, _Size)
#define _FILL_STRING
#define _RETURN_BUFFER_TOO_SMALL(_String, _Size)
#define _RESET_STRING(_String, _Size)
#define TRUE
Definition: types.h:120
GLint const GLchar GLint stringlen
Definition: glext.h:7232
GLenum GLenum dst
Definition: glext.h:6340
#define LC_CTYPE
Definition: locale.h:19
#define _VALIDATE_RETURN_ERRCODE(expr, errorcode)
#define strcpy_s(d, l, s)
Definition: utility.h:200
#define errno
Definition: errno.h:18
#define EILSEQ
Definition: errno.h:109
size_t __cdecl strnlen(char const *const string, size_t const maximum_count)
Definition: strnlen.cpp:202
pthreadlocinfo locinfo
Definition: corecrt.h:23
#define LCMAP_LOWERCASE
Definition: winnls.h:186

Referenced by _strlwr_s_l().