reactos/lib/sdk/crt/string/tcscpy.h
2013-06-16 22:01:41 +00:00

11 lines
150 B
C

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