1TOWLOWER(3) Linux Programmer's Manual TOWLOWER(3)
2
3
4
6 towlower - convert a wide character to lowercase
7
9 #include <wctype.h>
10
11 wint_t towlower(wint_t wc);
12
14 The towlower() function is the wide-character equivalent of the
15 tolower(3) function. If wc is a wide character, it is converted to
16 lowercase. Characters which do not have case are returned unchanged.
17 If wc is WEOF, WEOF is returned.
18
20 The towlower() function returns the lowercase equivalent of wc, or WEOF
21 if wc is WEOF.
22
24 C99.
25
27 The behavior of towlower() depends on the LC_CTYPE category of the cur‐
28 rent locale.
29
30 This function is not very appropriate for dealing with Unicode charac‐
31 ters, because Unicode knows about three cases: upper, lower and title
32 case.
33
35 iswlower(3), towctrans(3), towupper(3)
36
38 This page is part of release 3.25 of the Linux man-pages project. A
39 description of the project, and information about reporting bugs, can
40 be found at http://www.kernel.org/doc/man-pages/.
41
42
43
44GNU 1999-07-25 TOWLOWER(3)