mirror of
https://github.com/reactos/reactos.git
synced 2024-11-02 12:53:33 +00:00
16 lines
215 B
C
16 lines
215 B
C
|
|
#include <tchar.h>
|
|
|
|
#ifdef _MSC_VER
|
|
#pragma function(_tcscpy)
|
|
#endif /* _MSC_VER */
|
|
|
|
_TCHAR * _tcscpy(_TCHAR * to, const _TCHAR * from)
|
|
{
|
|
_TCHAR *save = to;
|
|
|
|
for (; (*to = *from); ++from, ++to);
|
|
|
|
return save;
|
|
}
|