reactos/lib/sdk/crt/string/tcscpy.h

14 lines
162 B
C
Raw Normal View History

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