wmemcpy

wchar_t *wmemcpy(wchar_t *s1, const wchar_t *s2, size_t n);

The function copies the array beginning at the address s2 to the array beginning at the address s1 (both of size n). It returns s1. The elements of the arrays can be accessed and stored in any order.