Espaços nominais
Variantes
Acções

strxfrm

Da cppreference.com
< c‎ | string‎ | byte

 
 
 
Cordas de terminação nula de bytes
Funções
Original:
Functions
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Manipulação personagem
Original:
Character manipulation
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Conversões para formatos numéricos
Original:
Conversions to numeric formats
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Manipulação de cadeia
Original:
String manipulation
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
strxfrm
Exame String
Original:
String examination
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Manipulação de memória
Original:
Memory manipulation
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Diversos
Original:
Miscellaneous
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
 
Definido no cabeçalho <string.h>
size_t strxfrm( const char *dest, const char *src, size_t count );
Transforma a seqüência de bytes terminada em nulo apontado por src de acordo com a localidade e copia os caracteres count primeiro da cadeia transformada em destino, retornando a sua extensão.
Original:
Transforms the null-terminated byte string pointed to by src according to the current locale and copies the first count 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.
Alternativamente, a função pode ser usada para recuperar somente o comprimento, especificando um ponteiro nulo para dest e 0 para count.
Original:
Alternativelly, 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.

Índice

[editar] Parâmetros

dest -
ponteiro para o byte string para copiar a cadeia transformada
Original:
pointer to the byte 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 o byte string terminada em nulo para transformar
Original:
pointer to the null-terminated byte 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.

[editar] Valor de retorno

O comprimento da corda transformado, não incluindo o caractere nulo de terminação-.
Original:
The length of the transformed 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.

[editar] Exemplo

[editar] Veja também

C++ documentation for strxfrm