add opendir alias
[minix.git] / lib / libc / locale / wcrtomb.3
blobfb03f05f8a2bebc5c5599d5d6ec6f214e9155daf
1 .\" $NetBSD: wcrtomb.3,v 1.9 2007/02/20 08:33:25 wiz Exp $
2 .\"
3 .\" Copyright (c)2002 Citrus Project,
4 .\" All rights reserved.
5 .\"
6 .\" Redistribution and use in source and binary forms, with or without
7 .\" modification, are permitted provided that the following conditions
8 .\" are met:
9 .\" 1. Redistributions of source code must retain the above copyright
10 .\"    notice, this list of conditions and the following disclaimer.
11 .\" 2. Redistributions in binary form must reproduce the above copyright
12 .\"    notice, this list of conditions and the following disclaimer in the
13 .\"    documentation and/or other materials provided with the distribution.
14 .\"
15 .\" THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
16 .\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
17 .\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
18 .\" ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
19 .\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
20 .\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
21 .\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
22 .\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
23 .\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
24 .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
25 .\" SUCH DAMAGE.
26 .\"
27 .Dd February 4, 2002
28 .Dt WCRTOMB 3
29 .Os
30 .\" ----------------------------------------------------------------------
31 .Sh NAME
32 .Nm wcrtomb
33 .Nd converts a wide character to a multibyte character (restartable)
34 .\" ----------------------------------------------------------------------
35 .Sh LIBRARY
36 .Lb libc
37 .\" ----------------------------------------------------------------------
38 .Sh SYNOPSIS
39 .In wchar.h
40 .Ft size_t
41 .Fn wcrtomb "char * restrict s" "wchar_t wc" "mbstate_t * restrict ps"
42 .\" ----------------------------------------------------------------------
43 .Sh DESCRIPTION
44 .Fn wcrtomb
45 converts the wide character given by
46 .Fa wc
47 to the corresponding multibyte character, and stores it in the array
48 pointed to by
49 .Fa s
50 unless
51 .Fa s
52 is a null pointer.
53 This function will modify the first at most
54 .Dv MB_CUR_MAX
55 bytes of the array pointed to by
56 .Fa s .
57 .Pp
58 The behaviour of
59 .Fn wcrtomb
60 is affected by the
61 .Dv LC_CTYPE
62 category of the current locale.
63 .Pp
64 These are the special cases:
65 .Bl -tag -width 012345678901
66 .It "wc == 0"
67 For state-dependent encodings,
68 .Fn wcrtomb
69 stores a nul byte preceded by special byte sequence (if any)
70 to return to an initial state in the array pointed to by
71 .Fa s ,
72 and the state object pointed to by
73 .Fa ps
74 also returns to an initial state.
75 .It "s == NULL"
76 .Fn wcrtomb
77 just places
78 .Fa ps
79 into an initial state.
80 It is equivalent to the following call:
81 .Bd -literal -offset indent
82 wcrtomb(buf, L'\\0', ps);
83 .Ed
84 .Pp
85 Here,
86 .Fa buf
87 is a dummy buffer.
88 In this case,
89 .Fa wc
90 is ignored.
91 .It "ps == NULL"
92 .Fn mbrtowc
93 uses its own internal state object to keep the conversion state,
94 instead of
95 .Fa ps
96 mentioned in this manual page.
97 .Pp
98 Calling any other functions in
99 .Lb libc
100 never changes the internal
101 state of
102 .Fn mbrtowc ,
103 which is initialized at startup time of the program.
105 .\" ----------------------------------------------------------------------
106 .Sh RETURN VALUES
107 .Fn wcrtomb
108 returns:
109 .Bl -tag -width 012345678901
110 .It "positive"
111 The number of bytes (including any shift sequences)
112 which are stored in the array.
113 .It "(size_t)-1"
114 .Fa wc
115 is not a valid wide character.
116 In this case,
117 .Fn wcrtomb
118 also sets
119 .Va errno
120 to indicate the error.
122 .\" ----------------------------------------------------------------------
123 .Sh ERRORS
124 .Fn wcrtomb
125 may cause an error in the following case:
126 .Bl -tag -width Er
127 .It Bq Er EILSEQ
128 .Fa wc
129 is not a valid wide character.
130 .It Bq Er EINVAL
131 .Fa ps
132 points to an invalid or uninitialized mbstate_t object.
134 .\" ----------------------------------------------------------------------
135 .Sh SEE ALSO
136 .Xr setlocale 3 ,
137 .Xr wctomb 3
138 .\" ----------------------------------------------------------------------
139 .Sh STANDARDS
141 .Fn wcrtomb
142 function conforms to
143 .St -isoC-amd1 .
144 The restrict qualifier is added at
145 .St -isoC-99 .