ReactOS
0.4.16-dev-1983-g1a17364
Functions
_wcsupr_nt.c File Reference
#include <string.h>
Include dependency graph for _wcsupr_nt.c:
Go to the source code of this file.
Functions
wchar_t
*
__cdecl
_wcsupr
(
_Inout_z_
wchar_t
*
_String
)
Function Documentation
◆
_wcsupr()
wchar_t
*
__cdecl
_wcsupr
(
_Inout_z_
wchar_t
*
_String
)
Definition at line
12
of file
_wcsupr_nt.c
.
14
{
15
wchar_t
ch, *
p
;
16
17
for
(
p
=
_String
; *
p
;
p
++)
18
{
19
ch = *
p
;
20
if
((ch >=
'a'
) && (ch <=
'z'
))
21
{
22
*
p
+=
'A'
-
'a'
;
23
}
24
}
25
26
return
_String
;
27
}
_String
_String
Definition:
corecrt_wstring.h:345
p
GLfloat GLfloat p
Definition:
glext.h:8902
sdk
lib
crt
wstring
_wcsupr_nt.c
Generated on Sat Dec 13 2025 06:27:25 for ReactOS by
1.9.6