Synopsis
wchar_t *wcscpy(wchar_t *s1,
                const wchar_t *s2);
Description

wcscpy copies the wide string pointed to by s2 (including the terminating null wide character) into the array pointed to by s1. The behavior of wcscpy is undefined if copying takes place between objects that overlap.

wcscpy returns the value of s1.