ReactOS
0.4.16-dev-1983-g1a17364
Functions
_strlwr_nt.c File Reference
#include <string.h>
Include dependency graph for _strlwr_nt.c:
Go to the source code of this file.
Functions
char
*
__cdecl
_strlwr
(
_Inout_z_
char
*
_String
)
Function Documentation
◆
_strlwr()
char
*
__cdecl
_strlwr
(
_Inout_z_
char
*
_String
)
Definition at line
12
of file
_strlwr_nt.c
.
14
{
15
char
ch, *
p
;
16
17
for
(
p
=
_String
; *
p
;
p
++)
18
{
19
ch = *
p
;
20
if
((ch >=
'A'
) && (ch <=
'Z'
))
21
{
22
*
p
+=
'a'
-
'A'
;
23
}
24
}
25
26
return
_String
;
27
}
_String
_String
Definition:
corecrt_wstring.h:345
p
GLfloat GLfloat p
Definition:
glext.h:8902
sdk
lib
crt
string
_strlwr_nt.c
Generated on Sat Dec 13 2025 06:27:23 for ReactOS by
1.9.6