reactos/lib/sdk/crt/wstring/wcslwr.c
Timo Kreuzer 6afbc8f483 Hopefully create a branch and not destroy the svn repository.
svn path=/branches/reactos-yarotows/; revision=45219
2010-01-23 23:25:04 +00:00

25 lines
344 B
C

/*
* The C RunTime DLL
*
* Implements C run-time functionality as known from UNIX.
*
* Copyright 1996,1998 Marcus Meissner
* Copyright 1996 Jukka Iivonen
* Copyright 1997 Uwe Bonnes
*/
#include <precomp.h>
/*
* @implemented
*/
wchar_t * _wcslwr(wchar_t *x)
{
wchar_t *y=x;
while (*y) {
*y=towlower(*y);
y++;
}
return x;
}