std::wmemcmp
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 <cwchar>
|
||
int wmemcmp( const wchar_t* lhs, const wchar_t* rhs, std::size_t count ); |
||
Compara os primeiros
count caracteres largos dos objetos apontados por lhs e rhs. A comparação é feita lexicographically.Original:
Compares the first
count wide characters of the objects pointed to by lhs and rhs. The comparison is done lexicographically.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
| lhs, rhs | - | ponteiros para a memória buffers para comparar
Original: pointers to the memory buffers to compare 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 de bytes para examinar
Original: number of bytes to examine 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
Valor negativo se
lhs é menos rhs.Original:
Negative value if
lhs is less than rhs.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.
0 se lhs é igual rhs.Original:
0 if lhs is equal to rhs.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.
Valor positivo se
lhs é maior rhs.Original:
Positive value if
lhs is greater than rhs.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
compara duas seqüências de largura Original: compares two wide strings The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (função) | |
compara uma certa quantidade de caracteres a partir de duas cadeias de largura Original: compares a certain amount of characters from two wide strings The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (função) | |
Documentação C para wmemcmp
| |