◐ Shell
clean mode source ↗

std::wcscpy — cppreference.com

De cppreference.com

<metanoindex/>

<tbody> </tbody>

Déclaré dans l'en-tête

<cwchar>

wchar_t *wcscpy( wchar_t *dest, const wchar_t *src );

Copie la chaîne pointée par gamme src (y compris le caractère nul final) au tableau de caractères larges pointée par dest .

Original:

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

The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

Si les cordes se chevauchent, le comportement est indéfini .

Original:

If the strings overlap, the behavior is undefined.

The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

Paramètres

dest -

pointeur vers le tableau de caractères larges de la copie

Original:

pointer to the wide character array to copy to

The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

src -

pointeur vers la chaîne se terminant par null gamme à copier

Original:

pointer to the null-terminated wide string to copy from

The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

Retourne la valeur

dest

Exemple

Voir aussi

copie d'un certain nombre de caractères étendus à partir d'une chaîne à l'autre

Original:

copies a certain amount of wide characters from one string to another

The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.


(fonction) [edit]

copie d'un certain nombre de caractères larges entre deux rangées ne se chevauchent pas

Original:

copies a certain amount of wide characters between two non-overlapping arrays

The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.


(fonction) [edit]

C documentation for wcscpy