reactos/reactos/lib/string/wcscpy.c
Hartmut Birr 34cc922d57 - Added static string library.
svn path=/trunk/; revision=4769
2003-05-27 18:58:15 +00:00

13 lines
215 B
C

/*
* $Id: wcscpy.c,v 1.1 2003/05/27 18:56:15 hbirr Exp $
*/
#include <string.h>
wchar_t* wcscpy(wchar_t *to, const wchar_t *from)
{
wchar_t *save = to;
for (; (*to = *from); ++from, ++to);
return save;
}