ReactOS
0.4.16-dev-588-gf07ea94
strlwr.c
Go to the documentation of this file.
1
2
#include <precomp.h>
3
4
/*
5
* @implemented
6
*/
7
char
*
CDECL
_strlwr
(
char
*
x
)
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
CDECL
#define CDECL
Definition:
compat.h:29
x
GLint GLint GLint GLint GLint x
Definition:
gl.h:1548
y
GLint GLint GLint GLint GLint GLint y
Definition:
gl.h:1548
_strlwr
_strlwr
Definition:
string.h:231
sdk
lib
crt
string
strlwr.c
Generated on Thu Jan 23 2025 06:13:57 for ReactOS by
1.9.6