ReactOS 0.4.16-dev-1972-gf20c09f
_strlwr_nt.c
Go to the documentation of this file.
1/*
2 * PROJECT: ReactOS NT CRT library
3 * LICENSE: MIT (https://spdx.org/licenses/MIT)
4 * PURPOSE: Implementation of _strlwr
5 * COPYRIGHT: Copyright 2025 Timo Kreuzer <timo.kreuzer@reactos.org>
6 */
7
8#include <string.h>
9
10char*
13 _Inout_z_ char* _String)
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}
#define __cdecl
Definition: accygwin.h:79
_String
GLfloat GLfloat p
Definition: glext.h:8902
#define _Inout_z_
Definition: no_sal2.h:166
_strlwr
Definition: string.h:231