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()
19 function.
20
22 The towctrans() function returns the translated wide character, or WEOF
23 if wc is WEOF.
24
26 C99.
27
29 towlower(3), towupper(3), wctrans(3)
30
32 The behaviour of towctrans() depends on the LC_CTYPE category of the
33 current locale.
34
35
36
37GNU 1999-07-25 TOWCTRANS(3)