xref: /freebsd/lib/libc/locale/wcrtomb.3 (revision fa9896e082a1046ff4fbc75fcba4d18d1f2efc19)
18b810927STim J. Robbins.\" Copyright (c) 2002-2004 Tim J. Robbins
2e92a3d83STim J. Robbins.\" All rights reserved.
3e92a3d83STim J. Robbins.\"
4e92a3d83STim J. Robbins.\" Redistribution and use in source and binary forms, with or without
5e92a3d83STim J. Robbins.\" modification, are permitted provided that the following conditions
6e92a3d83STim J. Robbins.\" are met:
7e92a3d83STim J. Robbins.\" 1. Redistributions of source code must retain the above copyright
8e92a3d83STim J. Robbins.\"    notice, this list of conditions and the following disclaimer.
9e92a3d83STim J. Robbins.\" 2. Redistributions in binary form must reproduce the above copyright
10e92a3d83STim J. Robbins.\"    notice, this list of conditions and the following disclaimer in the
11e92a3d83STim J. Robbins.\"    documentation and/or other materials provided with the distribution.
12e92a3d83STim J. Robbins.\"
13e92a3d83STim J. Robbins.\" THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
14e92a3d83STim J. Robbins.\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
15e92a3d83STim J. Robbins.\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
16e92a3d83STim J. Robbins.\" ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
17e92a3d83STim J. Robbins.\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
18e92a3d83STim J. Robbins.\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
19e92a3d83STim J. Robbins.\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
20e92a3d83STim J. Robbins.\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
21e92a3d83STim J. Robbins.\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
22e92a3d83STim J. Robbins.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
23e92a3d83STim J. Robbins.\" SUCH DAMAGE.
24e92a3d83STim J. Robbins.\"
25*50c77c6eSEd Schouten.Dd May 21, 2013
26e92a3d83STim J. Robbins.Dt WCRTOMB 3
27e92a3d83STim J. Robbins.Os
28e92a3d83STim J. Robbins.Sh NAME
29*50c77c6eSEd Schouten.Nm wcrtomb ,
30*50c77c6eSEd Schouten.Nm c16rtomb ,
31*50c77c6eSEd Schouten.Nm c32rtomb
32e92a3d83STim J. Robbins.Nd "convert a wide-character code to a character (restartable)"
33e92a3d83STim J. Robbins.Sh LIBRARY
34e92a3d83STim J. Robbins.Lb libc
35e92a3d83STim J. Robbins.Sh SYNOPSIS
36e92a3d83STim J. Robbins.In wchar.h
37e92a3d83STim J. Robbins.Ft size_t
38*50c77c6eSEd Schouten.Fn wcrtomb "char * restrict s" "wchar_t c" "mbstate_t * restrict ps"
39*50c77c6eSEd Schouten.In uchar.h
40*50c77c6eSEd Schouten.Ft size_t
41*50c77c6eSEd Schouten.Fn c16rtomb "char * restrict s" "char16_t c" "mbstate_t * restrict ps"
42*50c77c6eSEd Schouten.Ft size_t
43*50c77c6eSEd Schouten.Fn c32rtomb "char * restrict s" "char32_t c" "mbstate_t * restrict ps"
44e92a3d83STim J. Robbins.Sh DESCRIPTION
45e92a3d83STim J. RobbinsThe
46*50c77c6eSEd Schouten.Fn wcrtomb ,
47*50c77c6eSEd Schouten.Fn c16rtomb
48*50c77c6eSEd Schoutenand
49*50c77c6eSEd Schouten.Fn c32rtomb
50*50c77c6eSEd Schoutenfunctions store a multibyte sequence representing the
51e92a3d83STim J. Robbinswide character
52*50c77c6eSEd Schouten.Fa c ,
53e92a3d83STim J. Robbinsincluding any necessary shift sequences, to the
54e92a3d83STim J. Robbinscharacter array
55e92a3d83STim J. Robbins.Fa s ,
56e92a3d83STim J. Robbinsstoring a maximum of
57e92a3d83STim J. Robbins.Dv MB_CUR_MAX
58e92a3d83STim J. Robbinsbytes.
59e92a3d83STim J. Robbins.Pp
60e92a3d83STim J. RobbinsIf
61e92a3d83STim J. Robbins.Fa s
62e92a3d83STim J. Robbinsis
63e92a3d83STim J. Robbins.Dv NULL ,
64*50c77c6eSEd Schoutenthese functions behave as if
65e92a3d83STim J. Robbins.Fa s
66e92a3d83STim J. Robbinspointed to an internal buffer and
67*50c77c6eSEd Schouten.Fa c
68e92a3d83STim J. Robbinswas a null wide character (L'\e0').
69e92a3d83STim J. Robbins.Pp
70e92a3d83STim J. RobbinsThe
71e92a3d83STim J. Robbins.Ft mbstate_t
72e92a3d83STim J. Robbinsargument,
73e92a3d83STim J. Robbins.Fa ps ,
74e92a3d83STim J. Robbinsis used to keep track of the shift state.
75e92a3d83STim J. RobbinsIf it is
76e92a3d83STim J. Robbins.Dv NULL ,
77*50c77c6eSEd Schoutenthese functions use an internal, static
78279062faSRuslan Ermilov.Vt mbstate_t
798b810927STim J. Robbinsobject, which is initialized to the initial conversion state
808b810927STim J. Robbinsat program startup.
81*50c77c6eSEd Schouten.Pp
82*50c77c6eSEd SchoutenAs certain multibyte characters may only be represented by a series of
83*50c77c6eSEd Schouten16-bit characters, the
84*50c77c6eSEd Schouten.Fn c16rtomb
85*50c77c6eSEd Schoutenmay need to invoked multiple times before a multibyte sequence is
86*50c77c6eSEd Schoutenreturned.
87e92a3d83STim J. Robbins.Sh RETURN VALUES
88*50c77c6eSEd SchoutenThese functions return the length (in bytes) of the multibyte sequence
89e92a3d83STim J. Robbinsneeded to represent
90*50c77c6eSEd Schouten.Fa c ,
91e92a3d83STim J. Robbinsor
92279062faSRuslan Ermilov.Po Vt size_t Pc Ns \-1
93e92a3d83STim J. Robbinsif
94*50c77c6eSEd Schouten.Fa c
95e92a3d83STim J. Robbinsis not a valid wide character code.
96e92a3d83STim J. Robbins.Sh ERRORS
97e92a3d83STim J. RobbinsThe
98*50c77c6eSEd Schouten.Fn wcrtomb ,
99*50c77c6eSEd Schouten.Fn c16rtomb
100*50c77c6eSEd Schoutenand
101*50c77c6eSEd Schouten.Fn c32rtomb
102*50c77c6eSEd Schoutenfunctions will fail if:
103e92a3d83STim J. Robbins.Bl -tag -width Er
104e92a3d83STim J. Robbins.It Bq Er EILSEQ
105e92a3d83STim J. RobbinsAn invalid wide character code was specified.
1068b810927STim J. Robbins.It Bq Er EINVAL
1078b810927STim J. RobbinsThe conversion state is invalid.
108e92a3d83STim J. Robbins.El
109e92a3d83STim J. Robbins.Sh SEE ALSO
110e92a3d83STim J. Robbins.Xr mbrtowc 3 ,
1118b810927STim J. Robbins.Xr multibyte 3 ,
112e92a3d83STim J. Robbins.Xr setlocale 3 ,
113e92a3d83STim J. Robbins.Xr wctomb 3
114e92a3d83STim J. Robbins.Sh STANDARDS
115e92a3d83STim J. RobbinsThe
116*50c77c6eSEd Schouten.Fn wcrtomb ,
117*50c77c6eSEd Schouten.Fn c16rtomb
118*50c77c6eSEd Schoutenand
119*50c77c6eSEd Schouten.Fn c32rtomb
120*50c77c6eSEd Schoutenfunctions conform to
121*50c77c6eSEd Schouten.St -isoC-2011 .
122