towupper
From cppreference.com
Defined in header <wctype.h>
|
||
wint_t towupper( wint_t wc ); |
(since C95) | |
Converts the given wide character to uppercase, if possible.
Parameters
wc | - | wide character to be converted |
Return value
Uppercase version of wc
or unmodified wc
if no uppercase version is listed in the current C locale.
Notes
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
.