ReactOS
0.4.16-dev-1983-g1a17364
Functions
tolower_nt.c File Reference
#include <string.h>
Include dependency graph for tolower_nt.c:
Go to the source code of this file.
Functions
_Check_return_
_CRTIMP
int
__cdecl
tolower
(
_In_
int
_C)
Function Documentation
◆
tolower()
_Check_return_
_CRTIMP
int
__cdecl
tolower
(
_In_
int
_C
)
Definition at line
14
of file
tolower_nt.c
.
16
{
17
if
(((
char
)_C >=
'A'
) && ((
char
)_C <=
'Z'
))
18
{
19
return
_C + (
'a'
-
'A'
);
20
}
21
22
return
_C;
23
}
sdk
lib
crt
string
tolower_nt.c
Generated on Sat Dec 13 2025 06:27:23 for ReactOS by
1.9.6