ReactOS
0.4.16-dev-533-gc7d1aa3
Functions
strlwr.c File Reference
#include <precomp.h>
Include dependency graph for strlwr.c:
Go to the source code of this file.
Functions
char
*
CDECL
_strlwr
(
char
*
x
)
Function Documentation
◆
_strlwr()
char
*
CDECL
_strlwr
(
char
*
x
)
Definition at line
7
of file
strlwr.c
.
8
{
9
char
*
y
=
x
;
10
char
ch, lower;
11
12
while
(*
y
) {
13
ch = *
y
;
14
lower =
tolower
(ch);
15
if
(ch != lower)
16
*
y
= lower;
17
y
++;
18
}
19
return
x
;
20
}
tolower
int tolower(int c)
Definition:
utclib.c:902
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
strlwr.c
Generated on Sun Jan 19 2025 06:24:04 for ReactOS by
1.9.6