7.24.4.2.1 The wcscpy function
Synopsis
#include <wchar.h>
wchar_t *wcscpy(wchar_t * restrict s1,
const wchar_t * restrict s2);
Description
The wcscpy function copies the wide string pointed to by s2 (including the terminating null wide character) into the array pointed to by s1.
Returns
The wcscpy function returns the value of s1.