wmemmove function — Copies overlapping wide strings
wchar_t* memmove(wchar_t* dst, const wchar_t* src, size_t n)
The wmemmove
function
copies n
wide characters from
src
to dst
. The memory regions can overlap. The
return value is dst
.
wcscpy function, wcsncpy function, wmemcpy function, copy
in <algorithm>
, copy_backward
in <algorithm>
, memmove
in <cstring>