December 2005
Beginner to intermediate
618 pages
20h 19m
English
towupper
Converts a lowercase wide character to uppercase
#include <wctype.h> wint_ttowupper( wint_twc);
The towupper() function is
like toupper() in all respects,
except that it operates on wide characters. An uppercase wide
character is one for which iswupper() returns true in the current locale; a lowercase
wide character is one for which iswlower() returns true.
See the example for mbrtowc() in this
chapter.
iswlower(), iswupper(), tolower(), toupper(), towlower(), towctrans()
Read now
Unlock full access