◐ Shell
clean mode source ↗

std::wcsncat — cppreference.com

De cppreference.com

<metanoindex/>

<tbody> </tbody>

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

<cwchar>

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

Ajoute une chaîne large pointé par src à une chaîne large pointé par dest. Tout au plus count caractères larges sont copiés. La chaîne résultante est large se terminant par null. Si les cordes se chevauchent, le comportement est indéfini .

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.

Paramètres

dest -

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

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 -

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.

count -

nombre maximum de caractères larges à copier

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.

Retourne la valeur

dest

Exemple

Voir aussi

ajoute une copie d'une chaîne à une autre échelle

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.


(fonction) [edit]

copie une chaîne large à l'autre

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.


(fonction) [edit]

C documentation for wcsncat