#include <wctype.h>
|
|
wint_t
towlower (wint_t wc); |
The behavior of the towlower is affected by LC_CTYPE category of the current locale.
#include <wchar.h>
/* Illustrates how to use towlower API */
wint_t example_towlower(void)
{
/* input character */
wint_t uwc = L’M’;
wint_t lwc;
/* convert a wide char from upper case to lower case */
lwc = towlower(uwc);
/* return the converted char or error if not */
return lwc;
}
The towlower function conforms to -isoC-99.
|
© 2007-2009 Nokia Corporation. All rights reserved. This documentation can be used in the connection with this Product to help and support the user. |
|