std::wcsncpy
De cppreference.com
|
|
This page has been machine-translated from the English version of the wiki using Google Translate.
The translation may contain errors and awkward wording. Hover over text to see the original version. You can help to fix errors and improve the translation. For instructions click here. |
<metanoindex/>
<tbody> </tbody>| Déclaré dans l'en-tête <cwchar>
|
||
wchar_t *wcsncpy( wchar_t *dest, const wchar_t *src, std::size_t count ); |
||
Des copies de la plupart des personnages
count de la chaîne pointée par gamme src (y compris le caractère nul final) au tableau de caractères larges pointée par dest . Original:
Copies at most
count characters of 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.
You can help to correct and verify the translation. Click here for instructions.
Si
count est atteint avant la src chaîne entière a été copié, le tableau de caractères large en résultant n'est pas terminée par NULL .Original:
If
count is reached before the entire string src was copied, the resulting wide character array is not null-terminated.The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
You can help to correct and verify the translation. Click here for instructions.
Si, après avoir copié le caractère nul final de
src, count n'est pas atteint, d'autres caractères larges nuls sont écrites dest jusqu'à ce que le total de caractères count ont été écrit .Original:
If, after copying the terminating null wide character from
src, count is not reached, additional null wide characters are written to dest until the total of count characters have been written.The text has been machine-translated via