wcscpy function — Copies wide strings
wchar_t* wcscpy(wchar_t* dst, const wchar_t* src)
The wcscpy
function copies
the null-terminated wide string src
to dst
. The caller must ensure that dst
points to a region of memory that is
large enough to hold the entire src
string plus its null terminator. The
return value is dst
.