#include <corecrt_internal.h>
#include <ctype.h>
#include <corecrt_internal_securecrt.h>
#include <limits.h>
#include <locale.h>
#include <string.h>
Go to the source code of this file.
◆ _strupr()
Definition at line 54 of file strupr.cpp.
57{
58 if (!__acrt_locale_changed())
59 {
60
62
64
65 for (
cp =
string ; *
cp ; ++
cp )
66 if ( (
'a' <= *
cp) && (*
cp <=
'z') )
68
69 return(string);
70 }
71 else
72 {
74 return (string);
75 }
76}
#define _VALIDATE_RETURN(expr, errorcode, retexpr)
◆ _strupr_l()
Definition at line 45 of file strupr.cpp.
49{
51 return (string);
52}
◆ _strupr_s()
◆ _strupr_s_l()
Definition at line 189 of file strupr.cpp.
194{
195 _LocaleUpdate _loc_update(
plocinfo);
196
198}
static errno_t __cdecl _strupr_s_l_stat(_Inout_updates_z_(sizeInBytes) char *const string, size_t const sizeInBytes, _locale_t const plocinfo)
◆ _strupr_s_l_stat()
Definition at line 104 of file strupr.cpp.
109{
110 int dstsize;
112
113
117 {
120 }
122
124 {
126
128 {
129 if ( (
'a' <= *
cp) && (*
cp <=
'z') )
130 {
132 }
133 }
134
135 return 0;
136 }
137
138
143 string,
144 -1,
145 nullptr,
146 0,
149 {
152 }
153
155 {
158 }
159
160
161 __crt_scoped_stack_ptr<char>
const dst(_malloca_crt_t(
char, dstsize));
163 {
166 }
167
168
173 string,
174 -1,
176 dstsize,
179 {
180
182 }
183 else
184 {
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 _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 strcpy_s(d, l, s)
size_t __cdecl strnlen(char const *const string, size_t const maximum_count)
Referenced by _strupr_s_l().