std::strncpy
Aus 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. |
definiert in Header <cstring> | ||
char*strncpy(char*dest, constchar*src, std::size_t count ); | ||
Kopien in den meisten
count
Zeichen des Byte-String, auf den src
(einschließlich des abschließenden Null-Zeichen), um Zeichen-Array, auf die dest
. Original:
Copies at most
count
characters of the byte string pointed to by src
(including the terminating null character) to 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.
Wenn
count
erreicht wird, bevor der gesamte String src
kopiert wurde, ist das resultierende Zeichen-Array nicht null-terminierte .Original:
If
count
is reached before the entire string src
was copied, the resulting 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.
Wenn Sie nach dem Kopieren der abschließende Nullzeichen von
src
, count
nicht erreicht ist, werden zusätzliche null Zeichen dest
geschrieben, bis die Summe der count
Zeichen geschrieben wurden .Original:
If, after copying the terminating null character from
src
, count
is not reached, additional null characters are written to dest
until the total of count
characters have been written.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.
Wenn die Saiten überlappen, ist das Verhalten undefiniert .
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.
You can help to correct and verify the translation. Click here for instructions.
Inhaltsverzeichnis |
[Bearbeiten]Parameter
dest | - | Zeiger auf das Zeichen-Array kopiert werden soll Original: pointer to the 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 | - | Zeiger auf die Byte-String aus kopieren Original: pointer to the byte 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 | - | maximale Anzahl der zu kopierenden Zeichen Original: maximum number of 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. |
[Bearbeiten]Rückgabewert
dest
[Bearbeiten]Beispiel
Output:
The contents of dest are: h i \0 \0 \0 f
[Bearbeiten]Siehe auch
kopiert eine Zeichenkette in eine andere Original: copies 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. (Funktion) | |
einen Puffer kopiert zu einem anderen Original: copies one buffer to another The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (Funktion) | |
C documentation for strncpy |