ReactOS 0.4.16-dev-1983-g1a17364
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()

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}