mirror of
https://github.com/reactos/reactos.git
synced 2024-11-05 22:26:39 +00:00
16 lines
147 B
C
16 lines
147 B
C
|
|
#include <precomp.h>
|
|
|
|
/*
|
|
* @implemented
|
|
*/
|
|
char * CDECL _strlwr(char *x)
|
|
{
|
|
char *y=x;
|
|
|
|
while (*y) {
|
|
*y=tolower(*y);
|
|
y++;
|
|
}
|
|
return x;
|
|
}
|