towlower
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 <wctype.h>
|
||
wint_t towlower( wint_t ch ); |
||
Converte o caráter dado ampla para minúsculas, se possível.
Original:
Converts the given wide character to lowercase, if possible.
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
| ch | - | caracteres largos para ser convertido
Original: wide character to be converted 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
Versão minúscula
ch ou ch não modificada se nenhuma versão minúscula é listada na localidade C atual.Original:
Lowercase version of
ch or unmodified ch if no lowercase version is listed in the current C locale.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.
Notas
Apenas 01:01 mapeamento de caracteres pode ser realizada por esta função, por exemplo, a letra maiúscula grega "Σ" tem duas formas minúsculas, dependendo da posição em uma palavra: "σ" e "ς". Uma chamada para
towlower não pode ser utilizado para obter a forma correcta minúsculas neste caso. Original:
Only 1:1 character mapping can be performed by this function, e.g. the Greek uppercase letter 'Σ' has two lowercase forms, depending on the position in a word: 'σ' and 'ς'. A call to
towlower cannot be used to obtain the correct lowercase form in this case. 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.
Veja também
converte um caractere largo para maiúsculas Original: converts a wide character to uppercase The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (função) | |
converte um caractere para minúsculo Original: converts a character to lowercase The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (função) | |
C++ documentation for towlower
| |