:pserver:cvsanon@mok.lvcm.com:/CVS/ReactOS reactos
[reactos.git] / lib / msvcrt / wstring / wcscpy.c
1 /* Copyright (C) 1994 DJ Delorie, see COPYING.DJ for details */
2
3 #include <msvcrt/string.h>
4
5 wchar_t * wcscpy(wchar_t * str1,const wchar_t * str2)
6 {
7   wchar_t *save = str1;
8
9   for (; (*str1 = *str2); ++str2, ++str1);
10   return save;
11 }