wcsxfrm
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>| Definido no cabeçalho <wchar.h>
|
||
size_t strxfrm( const wchar_t* dest, const wchar_t* src, size_t count ); |
||
Transforma a string terminada em null gama apontado por
src de acordo com a localidade e copia os primeiros count caracteres largos da cadeia transformada em destino, retornando a sua extensão.Original:
Transforms the null-terminated wide string pointed to by
src according to the current locale and copies the first count wide characters of the transformed string to destination, returning its length.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.
Alternativamente, a função pode ser usada para recuperar somente o comprimento, especificando um ponteiro nulo para
dest e 0 para count.Original:
Alternatively, the function can be used to only retrieve the length, by specifying a null pointer for
dest and 0 for count.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.
Parâmetros
| dest | - | ponteiro para a cadeia de caracteres a copiar a seqüência transformada
Original: pointer to the character string to copy the transformed string to The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
| src | - | ponteiro para a cadeia de caracteres terminada em nulo para transformar
Original: pointer to the null-terminated character string to transform The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
| count | - | número máximo de caracteres para transformar
Original: maximum number of characters to transform The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
Valor de retorno
O comprimento da corda transformada de largura, não incluindo o caractere nulo de terminação-.
Original:
The length of the transformed wide string, not including the terminating null-character.
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.
Exemplo
| Esta seção está incompleta Motivo: sem exemplo |
Veja também
C++ documentation for wcsxfrm
|