ReactOS
0.4.15-dev-6703-g6528ab8
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
char *CDECL _strlwr(char *x)
Definition:
strlwr.c:7
sdk
lib
crt
string
strlwr.c
Generated on Tue Oct 3 2023 06:15:41 for ReactOS by
1.9.6