December 2005
Beginner to intermediate
618 pages
20h 19m
English
towlower
Converts an uppercase wide character to lowercase
#include <wctype.h> wint_ttowlower( wint_twc);
The towlower() function is
like tolower() 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 using the analogous function towupper() under
mbrtowc() in this
chapter.
iswlower(), iswupper(), tolower(), toupper(), towupper(), towctrans()
Read now
Unlock full access