◐ Shell
clean mode source ↗

std::wcsncat - cppreference.com

De cppreference.com

Esta página se ha traducido por ordenador/computador/computadora de la versión en inglés de la Wiki usando Google Translate.

La traducción puede contener errores y palabras aparatosas/incorrectas. Planea sobre el texto para ver la versión original. Puedes ayudar a corregir los errores y mejorar la traducción. Para instrucciones haz clic aquí.

Definido en el archivo de encabezado <cwchar>

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

Anexa una cadena ancha a la que apunta a una cadena src gama apuntada por dest. A lo sumo count caracteres anchos se copian. La cadena resultante es ancho terminado en nulo. Si las cadenas se superponen, el comportamiento no está definido .

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 -

puntero a la cadena terminada en cero amplio para anexar

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 -

puntero a la cadena terminada en nulo todo va a 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 anchos a 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

Ejemplo

Ver también