◐ Shell
clean mode source ↗

std::wcscpy - cppreference.com

De cppreference.com

<metanoindex/>

<tbody> </tbody>

Definido no cabeçalho

<cwchar>

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

Copia a seqüência de largura apontado por src (incluindo o caractere de terminação nula largura) para matriz de caracteres de largura apontado por 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 as cordas se sobrepõem, o comportamento é indefinido.

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.

Parâmetros

dest -

ponteiro para a matriz de caracteres de largura para copiar

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 -

ponteiro para a string terminada em null larga para copiar

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.

Valor de retorno

dest

Exemplo

Veja também

copia uma certa quantidade de caracteres de largura a partir de uma corda a outra

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.


(função) [edit]

copia uma certa quantidade de caracteres de largura entre duas matrizes não sobrepostos

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.


(função) [edit]

Documentação C para wcscpy