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