◐ Shell
clean mode source ↗

std::wcscpy - cppreference.com

Da cppreference.com.

Questa pagina è stata tradotta in modo automatico dalla versione in ineglese della wiki usando Google Translate.

La traduzione potrebbe contenere errori e termini strani. Muovi il puntatore sopra al testo per vedere la versione originale. Puoi aiutarci a correggere gli gli errori. Per ulteriori istruzioni clicca qui.

Click here for the English version of this page

<metanoindex/>

<tbody> </tbody>

Elemento definito nell'header

<cwchar>

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

Copia la stringa puntata da ampia src (incluso il carattere nullo di terminazione grandangolo) a matrice di caratteri gamma puntato da 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.

Se le stringhe si sovrappongono, il comportamento non è definito.

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.

Parametri

dest -

puntatore alla matrice di caratteri estesi in cui copiare

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 -

puntatore alla stringa con terminazione null ampia da cui copiare

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.

Valore di ritorno

dest

Esempio

Vedi anche

copia una certa quantità di caratteri estesi da una stringa in un'altra

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.


(funzione) [modifica]

copia un certo numero di caratteri estesi tra due matrici non si sovrappongono

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.


(funzione) [modifica]

C documentation for wcscpy