| ![[Previous]](../prev.gif) | ![[Contents]](../contents.gif) | ![[Index]](../keyword_index.gif) | ![[Next]](../next.gif) | 
Convert a wide character to lowercase
#include <wctype.h> wint_t towlower( wint_t wc );
libc
Use the -l c option to qcc to link against this library. This library is usually included automatically.
The towlower() function converts wc to a lowercase letter, if wc represents an uppercase letter.
The corresponding lowercase letter when the argument is an uppercase letter; otherwise, the original wide character is returned.
| Safety: | |
|---|---|
| Cancellation point | No | 
| Interrupt handler | Yes | 
| Signal handler | Yes | 
| Thread | Yes | 
iswalnum(), iswalpha(), iswcntrl(), iswctype(), iswdigit(), iswgraph(), iswlower(), iswprint(), iswpunct(), iswspace(), iswupper(), iswxdigit(), tolower(), toupper() towupper()
| ![[Previous]](../prev.gif) | ![[Contents]](../contents.gif) | ![[Index]](../keyword_index.gif) | ![[Next]](../next.gif) |