Copies the contents of a source wide string including the null character to a destination storage area.
[Format]
#include <wchar.h>
wchar_t *wcscpy(wchar_t * restrict s1, const wchar_t * restrict s2);
[Parameters]
s1 Pointer to destination storage area
s2 Pointer to source string
[Return values]
s1 value
[Remarks]
The wcscpy function group is the wide-character version of the strcpy function group.