towupper
Aus 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>| definiert in Header <wctype.h>
|
||
wint_t towupper( wint_t ch ); |
||
Konvertiert das angegebene wide character in Großbuchstaben, wenn möglich .
Original:
Converts the given wide character to uppercase, 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.
Parameter
| ch | - | breites Zeichen umgewandelt werden
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. |
Rückgabewert
Großbuchstaben Version
ch oder unmodifizierte ch wenn keine Großbuchstaben Version wird in der aktuellen C locale aufgeführt .Original:
Uppercase version of
ch or unmodified ch if no uppercase 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.
Notes
Nur 1:1 Zeichenzuordnung kann durch diese Funktion durchgeführt werden, zB die Großbuchstaben Form von 'ß' ist (mit einigen Ausnahmen) die Zwei-Zeichenkette "SS", die nicht durch
towupper erzielt werden kann .Original:
Only 1:1 character mapping can be performed by this function, e.g. the uppercase form of 'ß' is (with some exceptions) the two-character string "SS", which cannot be obtained by
towupper.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.
Siehe auch
wandelt eine weite Zeichen in Kleinbuchstaben Original: converts a wide 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. (Funktion) | |
wandelt ein Zeichen in Großbuchstaben Original: converts a 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. (Funktion) | |
C++ documentation for towupper
| |