reactos/lib/sdk/crt/string/tcscpy.h
2011-05-24 18:40:34 +00:00

13 lines
162 B
C

/* $Id$
*/
#include <tchar.h>
_TCHAR * _tcscpy(_TCHAR * to, const _TCHAR * from)
{
_TCHAR *save = to;
for (; (*to = *from); ++from, ++to);
return save;
}