1WCTRANS(3)                 Linux Programmer's Manual                WCTRANS(3)
2
3
4

NAME

6       wctrans - wide-character translation mapping
7

SYNOPSIS

9       #include <wctype.h>
10
11       wctrans_t wctrans(const char *name);
12

DESCRIPTION

14       The  wctrans_t type represents a mapping which can map a wide character
15       to another wide character.  Its nature is implementation-dependent, but
16       the  special  value (wctrans_t) 0 denotes an invalid mapping.  Non-zero
17       wctrans_t values can be passed to the towctrans(3) function to actually
18       perform the wide-character mapping.
19
20       The  wctrans()  function returns a mapping, given by its name.  The set
21       of valid names depends on the LC_CTYPE category of the current  locale,
22       but the following names are valid in all locales.
23         "tolower" - realizes the tolower(3) mapping
24         "toupper" - realizes the toupper(3) mapping
25

RETURN VALUE

27       The  wctrans()  function  returns  a  mapping descriptor if the name is
28       valid.  Otherwise it returns (wctrans_t) 0.
29

CONFORMING TO

31       C99.
32

NOTES

34       The behavior of wctrans() depends on the LC_CTYPE category of the  cur‐
35       rent locale.
36

SEE ALSO

38       towctrans(3)
39

COLOPHON

41       This  page  is  part of release 3.22 of the Linux man-pages project.  A
42       description of the project, and information about reporting  bugs,  can
43       be found at http://www.kernel.org/doc/man-pages/.
44
45
46
47GNU                               1999-07-25                        WCTRANS(3)
Impressum