1WCSRTOMBS(3) Linux Programmer's Manual WCSRTOMBS(3)
2
3
4
6 wcsrtombs - convert a wide-character string to a multibyte string
7
9 #include <wchar.h>
10
11 size_t wcsrtombs(char *dest, const wchar_t **src,
12 size_t len, mbstate_t *ps);
13
15 If dest is not NULL, the wcsrtombs() function converts the wide-charac‐
16 ter string *src to a multibyte string starting at dest. At most len
17 bytes are written to dest. The shift state *ps is updated. The con‐
18 version is effectively performed by repeatedly calling wcrtomb(dest,
19 *src, ps), as long as this call succeeds, and then incrementing dest by
20 the number of bytes written and *src by one. The conversion can stop
21 for three reasons:
22
23 1. A wide character has been encountered that can not be represented as
24 a multibyte sequence (according to the current locale). In this
25 case, *src is left pointing to the invalid wide character,
26 (size_t) -1 is returned, and errno is set to EILSEQ.
27
28 2. The length limit forces a stop. In this case, *src is left pointing
29 to the next wide character to be converted, and the number of bytes
30 written to dest is returned.
31
32 3. The wide-character string has been completely converted, including
33 the terminating null wide character (L'\0'), which has the side
34 effect of bringing back *ps to the initial state. In this case,
35 *src is set to NULL, and the number of bytes written to dest,
36 excluding the terminating null byte ('\0'), is returned.
37
38 If dest is NULL, len is ignored, and the conversion proceeds as above,
39 except that the converted bytes are not written out to memory, and that
40 no length limit exists.
41
42 In both of the above cases, if ps is NULL, a static anonymous state
43 known only to the wcsrtombs() function is used instead.
44
45 The programmer must ensure that there is room for at least len bytes at
46 dest.
47
49 The wcsrtombs() function returns the number of bytes that make up the
50 converted part of multibyte sequence, not including the terminating
51 null byte. If a wide character was encountered which could not be con‐
52 verted, (size_t) -1 is returned, and errno set to EILSEQ.
53
55 For an explanation of the terms used in this section, see
56 attributes(7).
57
58 ┌────────────┬───────────────┬──────────────────────────────┐
59 │Interface │ Attribute │ Value │
60 ├────────────┼───────────────┼──────────────────────────────┤
61 │wcsrtombs() │ Thread safety │ MT-Unsafe race:wcsrtombs/!ps │
62 └────────────┴───────────────┴──────────────────────────────┘
63
65 POSIX.1-2001, POSIX.1-2008, C99.
66
68 The behavior of wcsrtombs() depends on the LC_CTYPE category of the
69 current locale.
70
71 Passing NULL as ps is not multithread safe.
72
74 iconv(3), mbsinit(3), wcrtomb(3), wcsnrtombs(3), wcstombs(3)
75
77 This page is part of release 4.15 of the Linux man-pages project. A
78 description of the project, information about reporting bugs, and the
79 latest version of this page, can be found at
80 https://www.kernel.org/doc/man-pages/.
81
82
83
84GNU 2017-09-15 WCSRTOMBS(3)