ReactOS
0.4.15-dev-1632-g4e289ce
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
}
x
GLint GLint GLint GLint GLint x
Definition:
gl.h:1548
CDECL
#define CDECL
Definition:
compat.h:29
y
GLint GLint GLint GLint GLint GLint y
Definition:
gl.h:1548
_strlwr
char *CDECL _strlwr(char *x)
Definition:
strlwr.c:7
tolower
int tolower(int c)
Definition:
utclib.c:902
sdk
lib
crt
string
strlwr.c
Generated on Thu Jan 21 2021 06:10:35 for ReactOS by
1.8.15