std::wcscpy
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. |
| Defined in header <cwchar>
|
||
| wchar_t *wcscpy( wchar_t *dest, const wchar_t *src ); |
||
Copia la cadena apuntada por amplia
src (incluyendo el carácter ancho terminador nulo) a la matriz de caracteres anchos apuntada por 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.
Si las cadenas se superponen, el comportamiento no está definido .
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.
Contenido |
[editar] Parámetros
| dest | - | puntero al array de caracteres anchos a copiar
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 | - | 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. |
[editar] Valor de retorno
dest
[editar] Ejemplo
| This section is incomplete Reason: no example |
[editar] Ver también
| copia una cierta cantidad de caracteres anchos a partir de una cadena a otra 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. (función) | |
| copia una cierta cantidad de caracteres anchos entre dos matrices que no se solapan 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. (función) | |
| C documentation for wcscpy
| |