Namespaces
Variants
Actions

std::wcscpy

From cppreference.com
< cpp‎ | string‎ | wide
 
 
 
 
Defined in header <cwchar>
wchar_t* wcscpy( wchar_t* dest, const wchar_t* src );

Copies the wide string pointed to by src (including the terminating null wide character) to wide character array pointed to by dest.

If the strings overlap, the behavior is undefined.

Contents

[