std::wcscpy
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 <cwchar> | ||
wchar_t*wcscpy(wchar_t*dest, constwchar_t*src ); | ||
Kopiert die breite String, auf den
src
(einschließlich des abschließenden null-Zeichen) an Wide-Character Array, auf das dest
.Original:
Copies 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.
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 den Wide-Character-Array zu kopieren Original: pointer to the wide 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 null-terminierte breite String aus kopieren 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. |
[Bearbeiten]Rückgabewert
dest
[Bearbeiten]Beispiel
This section is incomplete Reason: no example |
[Bearbeiten]Siehe auch
kopiert eine gewisse breiten Zeichen aus einer Zeichenfolge in eine andere Original: copies a certain amount of wide characters from 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) | |
kopiert eine gewisse breiten Zeichen zwischen zwei nichtüberlappenden Arrays Original: copies a certain amount of wide characters between two non-overlapping arrays 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 wcscpy |