wmemcpy function — Copies wide strings
wchar_t* wmemcpy(wchar_t* dst, const wchar_t* src, size_t n)
The wmemcpy
function copies
n
wide characters from src
to dst
. If src
and dst
overlap, the results are undefined.
The return value is dst
.
wcscpy function, wcsncpy function, wmemmove function, copy
in <algorithm>
, memcpy
in <cstring>