◐ Shell
clean mode source ↗

std::wcsncat - cppreference.com

De cppreference.com

<metanoindex/>

<tbody> </tbody>

Definido no cabeçalho

<cwchar>

wchar_t *wcsncat( wchar_t *dest, const wchar_t *src, std::size_t count );

Acrescenta uma seqüência de largura apontado por src para uma cadeia ampla apontado por dest. No máximo count caracteres largos são copiados. A seqüência resultante larga é terminada em null. Se as cordas se sobrepõem, o comportamento é indefinido.

Original:

Appends a wide string pointed to by src to a wide string pointed to by dest. At most count wide characters are copied. The resulting wide string is null-terminated. 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 string terminada em null larga para acrescentar

Original:

pointer to the null-terminated wide string to append 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.

count -

número máximo de caracteres largos para copiar

Original:

maximum number of wide characters to copy

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

anexa uma cópia de uma cadeia ampla para outro

Original:

appends a copy of one wide 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 cadeia ampla para outro

Original:

copies one wide 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]

Documentação C para wcsncat