man.bsd.lv manual page server

Manual Page Search Parameters

WCRTOMB(3) Library Functions Manual WCRTOMB(3)

wcrtomb, wcrtomb_l, c16rtomb, c16rtomb_l, c32rtomb, c32rtomb_lconvert a wide-character code to a character (restartable)

library “libc”

#include <wchar.h>

size_t
wcrtomb(char * restrict s, wchar_t c, mbstate_t * restrict ps);

#include <uchar.h>

size_t
c16rtomb(char * restrict s, char16_t c, mbstate_t * restrict ps);

size_t
c32rtomb(char * restrict s, char32_t c, mbstate_t * restrict ps);

#include <xlocale.h>

size_t
wcrtomb_l(char * restrict s, wchar_t c, mbstate_t * restrict ps, locale_t locale);

size_t
c16rtomb_l(char * restrict s, char16_t c, mbstate_t * restrict ps, locale_t locale);

size_t
c32rtomb_l(char * restrict s, char32_t c, mbstate_t * restrict ps, locale_t);

The (), wcrtomb_l(), c16rtomb(), c16rtomb_l(), (), and c32rtomb_l() functions store a multibyte sequence representing the wide character c, including any necessary shift sequences, to the character array s, storing a maximum of MB_CUR_MAX bytes.

If s is NULL, these functions behave as if s pointed to an internal buffer and c was a null wide character (L'\0').

The mbstate_t argument, ps, is used to keep track of the shift state. If it is NULL, these functions use an internal, static mbstate_t object, which is initialized to the initial conversion state at program startup.

As certain multibyte characters may only be represented by a series of 16-bit characters, the () may need to invoked multiple times before a multibyte sequence is returned.

The (), (), and () functions take an explicit locale argument, whereas the wcrtomb(), c16rtomb(), and c32rtomb() functions use the current global or per-thread locale.

These functions return the length (in bytes) of the multibyte sequence needed to represent c, or (size_t)-1 if c is not a valid wide character code.

The wcrtomb(), wcrtomb_l(), c16rtomb(), c16rtomb_l(), c32rtomb(), and c32rtomb_l() functions will fail if:

[]
An invalid wide character code was specified.
[]
The conversion state is invalid.

mbrtowc(3), multibyte(3), setlocale(3), wcrtombin(3), wcrtoutf8(3), wctomb(3), xlocale(3)

The wcrtomb(), c16rtomb() and c32rtomb() functions conform to ISO/IEC 9899:2011 (“ISO C11”).

May 4, 2019 DragonFly-5.6.1