ReactOS 0.4.16-dev-1983-g1a17364
_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
GLfloat GLfloat p
Definition: glext.h:8902