ReactOS 0.4.16-dev-937-g7afcd2a
strupr.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 strupr.cpp:

Go to the source code of this file.

Functions

char *__cdecl _strupr_l (char *string, _locale_t plocinfo)
 
char *__cdecl _strupr (char *string)
 
static errno_t __cdecl _strupr_s_l_stat (_Inout_updates_z_(sizeInBytes) char *const string, size_t const sizeInBytes, _locale_t const plocinfo) throw ()
 
errno_t __cdecl _strupr_s_l (char *string, size_t sizeInBytes, _locale_t plocinfo)
 
errno_t __cdecl _strupr_s (char *string, size_t sizeInBytes)
 

Function Documentation

◆ _strupr()

char *__cdecl _strupr ( char string)

Definition at line 54 of file strupr.cpp.

57{
58 if (!__acrt_locale_changed())
59 {
60 /* validation section */
61 _VALIDATE_RETURN(string != nullptr, EINVAL, nullptr);
62
63 char *cp; /* traverses string for C locale conversion */
64
65 for ( cp = string ; *cp ; ++cp )
66 if ( ('a' <= *cp) && (*cp <= 'z') )
67 *cp -= 'a' - 'A';
68
69 return(string);
70 }
71 else
72 {
73 _strupr_s_l(string, (size_t)(-1), nullptr);
74 return (string);
75 }
76}
#define EINVAL
Definition: acclib.h:90
#define _VALIDATE_RETURN(expr, errorcode, retexpr)
POINT cp
Definition: magnifier.c:59
_strupr_s_l
Definition: string.h:471

◆ _strupr_l()

char *__cdecl _strupr_l ( char string,
_locale_t  plocinfo 
)

Definition at line 45 of file strupr.cpp.

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

◆ _strupr_s()

errno_t __cdecl _strupr_s ( char string,
size_t  sizeInBytes 
)

Definition at line 200 of file strupr.cpp.

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

◆ _strupr_s_l()

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

Definition at line 189 of file strupr.cpp.

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

◆ _strupr_s_l_stat()

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

Definition at line 104 of file strupr.cpp.

109{
110 int dstsize; /* size of dst string buffer (include null) */
111 size_t stringlen;
112
113 /* validation section */
114 _VALIDATE_RETURN_ERRCODE(string != nullptr, EINVAL);
115 stringlen = strnlen(string, sizeInBytes);
116 if (stringlen >= sizeInBytes)
117 {
118 _RESET_STRING(string, sizeInBytes);
120 }
121 _FILL_STRING(string, sizeInBytes, stringlen + 1);
122
123 if ( plocinfo->locinfo->locale_name[LC_CTYPE] == nullptr )
124 {
125 char *cp=string; /* traverses string for C locale conversion */
126
127 for ( ; *cp ; ++cp )
128 {
129 if ( ('a' <= *cp) && (*cp <= 'z') )
130 {
131 *cp -= 'a' - 'A';
132 }
133 }
134
135 return 0;
136 } /* C locale */
137
138 /* Inquire size of dst string */
139 if ( 0 == (dstsize = __acrt_LCMapStringA(
140 plocinfo,
141 plocinfo->locinfo->locale_name[LC_CTYPE],
143 string,
144 -1,
145 nullptr,
146 0,
147 plocinfo->locinfo->_public._locale_lc_codepage,
148 TRUE )) )
149 {
150 errno = EILSEQ;
151 return errno;
152 }
153
154 if (sizeInBytes < (size_t)dstsize)
155 {
156 _RESET_STRING(string, sizeInBytes);
158 }
159
160 /* Allocate space for dst */
161 __crt_scoped_stack_ptr<char> const dst(_malloca_crt_t(char, dstsize));
162 if (!dst)
163 {
164 errno = ENOMEM;
165 return errno;
166 }
167
168 /* Map src string to dst string in alternate case */
170 plocinfo,
171 plocinfo->locinfo->locale_name[LC_CTYPE],
173 string,
174 -1,
175 dst.get(),
176 dstsize,
177 plocinfo->locinfo->_public._locale_lc_codepage,
178 TRUE ) != 0)
179 {
180 /* copy dst string to return string */
181 return strcpy_s(string, sizeInBytes, dst.get());
182 }
183 else
184 {
185 return errno = EILSEQ;
186 }
187}
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
char string[160]
Definition: util.h:11
#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_UPPERCASE
Definition: winnls.h:187

Referenced by _strupr_s_l().