mirror of
https://github.com/reactos/reactos.git
synced 2025-06-07 02:10:36 +00:00
12 lines
150 B
C
12 lines
150 B
C
![]() |
|
||
|
#include <tchar.h>
|
||
|
|
||
|
_TCHAR * _tcscpy(_TCHAR * to, const _TCHAR * from)
|
||
|
{
|
||
|
_TCHAR *save = to;
|
||
|
|
||
|
for (; (*to = *from); ++from, ++to);
|
||
|
|
||
|
return save;
|
||
|
}
|