]>
Commit | Line | Data |
---|---|---|
3d9156a7 | 1 | .\" Copyright (c) 2002-2004 Tim J. Robbins |
9385eb3d A |
2 | .\" All rights reserved. |
3 | .\" | |
4 | .\" Redistribution and use in source and binary forms, with or without | |
5 | .\" modification, are permitted provided that the following conditions | |
6 | .\" are met: | |
7 | .\" 1. Redistributions of source code must retain the above copyright | |
8 | .\" notice, this list of conditions and the following disclaimer. | |
9 | .\" 2. Redistributions in binary form must reproduce the above copyright | |
10 | .\" notice, this list of conditions and the following disclaimer in the | |
11 | .\" documentation and/or other materials provided with the distribution. | |
12 | .\" | |
13 | .\" THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND | |
14 | .\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE | |
15 | .\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE | |
16 | .\" ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE | |
17 | .\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL | |
18 | .\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS | |
19 | .\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) | |
20 | .\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT | |
21 | .\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY | |
22 | .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF | |
23 | .\" SUCH DAMAGE. | |
24 | .\" | |
1f2f436a | 25 | .\" $FreeBSD: src/lib/libc/locale/mbsrtowcs.3,v 1.6 2005/01/11 20:50:49 ru Exp $ |
3d9156a7 | 26 | .Dd July 21, 2004 |
9385eb3d A |
27 | .Dt MBSRTOWCS 3 |
28 | .Os | |
29 | .Sh NAME | |
3d9156a7 A |
30 | .Nm mbsrtowcs , |
31 | .Nm mbsnrtowcs | |
9385eb3d A |
32 | .Nd "convert a character string to a wide-character string (restartable)" |
33 | .Sh LIBRARY | |
34 | .Lb libc | |
35 | .Sh SYNOPSIS | |
36 | .In wchar.h | |
37 | .Ft size_t | |
38 | .Fo mbsrtowcs | |
39 | .Fa "wchar_t * restrict dst" "const char ** restrict src" "size_t len" | |
40 | .Fa "mbstate_t * restrict ps" | |
41 | .Fc | |
3d9156a7 A |
42 | .Ft size_t |
43 | .Fo mbsnrtowcs | |
44 | .Fa "wchar_t * restrict dst" "const char ** restrict src" "size_t nms" | |
45 | .Fa "size_t len" "mbstate_t * restrict ps" | |
46 | .Fc | |
9385eb3d A |
47 | .Sh DESCRIPTION |
48 | The | |
49 | .Fn mbsrtowcs | |
50 | function converts a sequence of multibyte characters pointed to indirectly by | |
51 | .Fa src | |
52 | into a sequence of corresponding wide characters and stores at most | |
53 | .Fa len | |
54 | of them in the | |
55 | .Vt wchar_t | |
56 | array pointed to by | |
57 | .Fa dst , | |
58 | until it encounters a terminating null character | |
59 | .Pq Li '\e0' . | |
60 | .Pp | |
61 | If | |
62 | .Fa dst | |
63 | is | |
64 | .Dv NULL , | |
65 | no characters are stored. | |
66 | .Pp | |
67 | If | |
68 | .Fa dst | |
69 | is not | |
70 | .Dv NULL , | |
71 | the pointer pointed to by | |
72 | .Fa src | |
73 | is updated to point to the character after the one that conversion stopped at. | |
74 | If conversion stops because a null character is encountered, | |
75 | .Fa *src | |
76 | is set to | |
77 | .Dv NULL . | |
78 | .Pp | |
79 | The | |
80 | .Vt mbstate_t | |
81 | argument, | |
82 | .Fa ps , | |
83 | is used to keep track of the shift state. | |
84 | If it is | |
85 | .Dv NULL , | |
86 | .Fn mbsrtowcs | |
87 | uses an internal, static | |
88 | .Vt mbstate_t | |
3d9156a7 A |
89 | object, which is initialized to the initial conversion state |
90 | at program startup. | |
91 | .Pp | |
92 | The | |
93 | .Fn mbsnrtowcs | |
94 | function behaves identically to | |
95 | .Fn mbsrtowcs , | |
96 | except that conversion stops after reading at most | |
97 | .Fa nms | |
1f2f436a | 98 | bytes from the buffer pointed to by |
3d9156a7 | 99 | .Fa src . |
9385eb3d A |
100 | .Sh RETURN VALUES |
101 | The | |
102 | .Fn mbsrtowcs | |
3d9156a7 A |
103 | and |
104 | .Fn mbsnrtowcs | |
105 | functions return the number of wide characters stored in | |
9385eb3d A |
106 | the array pointed to by |
107 | .Fa dst | |
108 | if successful, otherwise it returns | |
109 | .Po Vt size_t Pc Ns \-1 . | |
110 | .Sh ERRORS | |
111 | The | |
112 | .Fn mbsrtowcs | |
3d9156a7 A |
113 | and |
114 | .Fn mbsnrtowcs | |
115 | functions will fail if: | |
9385eb3d A |
116 | .Bl -tag -width Er |
117 | .It Bq Er EILSEQ | |
118 | An invalid multibyte character sequence was encountered. | |
3d9156a7 A |
119 | .It Bq Er EINVAL |
120 | The conversion state is invalid. | |
9385eb3d A |
121 | .El |
122 | .Sh SEE ALSO | |
123 | .Xr mbrtowc 3 , | |
124 | .Xr mbstowcs 3 , | |
3d9156a7 | 125 | .Xr multibyte 3 , |
9385eb3d A |
126 | .Xr wcsrtombs 3 |
127 | .Sh STANDARDS | |
128 | The | |
129 | .Fn mbsrtowcs | |
130 | function conforms to | |
131 | .St -isoC-99 . | |
3d9156a7 A |
132 | .Pp |
133 | The | |
134 | .Fn mbsnrtowcs | |
135 | function is an extension to the standard. |