This commit was manufactured by cvs2svn to create branch 'captive'.
[reactos.git] / lib / string / tcscpy.h
1 /* $Id$
2  */
3
4 #include <tchar.h>
5
6 _TCHAR * _tcscpy(_TCHAR * to, const _TCHAR * from)
7 {
8  _TCHAR *save = to;
9
10  for (; (*to = *from); ++from, ++to);
11
12  return save;
13 }