1
0
Fork 0
mirror of https://github.com/reactos/reactos.git synced 2025-06-23 08:20:20 +00:00
reactos/sdk/lib/crt/string/strlwr.c

17 lines
147 B
C
Raw Normal View History

#include <precomp.h>
/*
* @implemented
*/
char * CDECL _strlwr(char *x)
{
char *y=x;
while (*y) {
*y=tolower(*y);
y++;
}
return x;
}