ReactOS
0.4.16-dev-816-g135a9a9
Functions
strupr.c File Reference
#include <precomp.h>
Include dependency graph for strupr.c:
Go to the source code of this file.
Functions
char
*
CDECL
_strupr
(
char
*
x
)
Function Documentation
◆
_strupr()
char
*
CDECL
_strupr
(
char
*
x
)
Definition at line
16
of file
strupr.c
.
17
{
18
char
*
y
=
x
;
19
char
ch, upper;
20
21
while
(*
y
) {
22
ch = *
y
;
23
upper =
toupper
(ch);
24
if
(ch != upper)
25
*
y
= upper;
26
y
++;
27
}
28
return
x
;
29
}
toupper
int toupper(int c)
Definition:
utclib.c:881
x
GLint GLint GLint GLint GLint x
Definition:
gl.h:1548
y
GLint GLint GLint GLint GLint GLint y
Definition:
gl.h:1548
sdk
lib
crt
string
strupr.c
Generated on Fri Mar 14 2025 06:24:22 for ReactOS by
1.9.6