[CDMAKE][CTR] Fix strtok_s for empty strings. Part of Wine commit 4fa616c by Bernhard...
[reactos.git] / reactos / sdk / lib / crt / string / strlwr.c
1
2 #include <precomp.h>
3
4 /*
5 * @implemented
6 */
7 char * CDECL _strlwr(char *x)
8 {
9 char *y=x;
10
11 while (*y) {
12 *y=tolower(*y);
13 y++;
14 }
15 return x;
16 }