1TOWCTRANS(3) Linux Programmer's Manual TOWCTRANS(3)
2
3
4
6 towctrans - wide-character transliteration
7
9 #include <wctype.h>
10
11 wint_t towctrans(wint_t wc, wctrans_t desc);
12
14 If wc is a wide character, the towctrans() function translates it
15 according to the transliteration descriptor desc. If wc is WEOF, WEOF
16 is returned.
17
18 desc must be a transliteration descriptor returned by the wctrans(3)
19 function.
20
22 The towctrans() function returns the translated wide character, or WEOF
23 if wc is WEOF.
24
26 C99.
27
29 The behavior of towctrans() depends on the LC_CTYPE category of the
30 current locale.
31
33 towlower(3), towupper(3), wctrans(3)
34
36 This page is part of release 3.22 of the Linux man-pages project. A
37 description of the project, and information about reporting bugs, can
38 be found at http://www.kernel.org/doc/man-pages/.
39
40
41
42GNU 1999-07-25 TOWCTRANS(3)