7.24.4.2.3 The wmemcpy function
Synopsis
#include <wchar.h>
wchar_t *wmemcpy(wchar_t * restrict s1,
const wchar_t * restrict s2,
size_t n);
Description
The wmemcpy function copies n wide characters from the object pointed to by s2 to the object pointed to by s1.
Returns
The wmemcpy function returns the value of s1.