Copies the wide-character string wstr_2, including the terminating null character, into wstr_1.
#include <wchar.h> wchar_t *wcscpy (wchar_t *wstr_1, const wchar_t *wstr_2);Function Variants This function also has variants named _wcscpy32 and _wcscpy64 for use with 32-bit and 64-bit pointer sizes, respectively. See Section 1.8 for more information on using pointer-size-specific functions.
See also wcsncpy in this section.
x | The address of wstr_ 1. |