Your Browser is not longer supported
Please use Google Chrome, Mozilla Firefox or Microsoft Edge to view the page correctly
Loading...
{{viewport.spaceProperty.prod}}
towupper - convert wide characters to uppercase
&pagelevel(4)&pagelevel
Syntax | #include <wchar.h> wint_t towupper(wint_t wc); |
Description | Description towupper() converts the wide character wc to the corresponding uppercase letter if wc is a lowercase wide-character code. |
Return val. | Uppercase of wc if wc is a lowercase letter. |
Notes | Restriction This version of the C runtime system only supports 1-byte characters as wide character codes. They are of type wchar_t (see stddef.h ). (End) |
See also | towlower() , setlocale() , wchar.h .
|