towctrans
From cppreference.com
| Defined in header <wctype.h>
|
||
| wint_t towctrans( wint_t wc, wctrans_t desc ); |
||
Maps the wide character wc using the current C locale's LC_CTYPE mapping category identified by desc.
Parameters
| ch | - | the wide character to map |
| desc | - | the LC_CTYPE mapping, obtained from a call to wctrans |
Return value
The mapped value of ch using the mapping identified by desc in LC_CTYPE facet of the current C locale.
See also
| C++ documentation for towctrans
|