]> git.saurik.com Git - apple/libc.git/blame - locale/FreeBSD/mbrlen.3
Libc-1082.50.1.tar.gz
[apple/libc.git] / locale / FreeBSD / mbrlen.3
CommitLineData
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.\"
3d9156a7 25.\" $FreeBSD: src/lib/libc/locale/mbrlen.3,v 1.8 2004/06/30 19:32:41 ru Exp $
9385eb3d 26.\"
3d9156a7 27.Dd April 7, 2004
9385eb3d
A
28.Dt MBRLEN 3
29.Os
30.Sh NAME
ad3c9f2a
A
31.Nm mbrlen ,
32.Nm mbrlen_l
9385eb3d
A
33.Nd "get number of bytes in a character (restartable)"
34.Sh LIBRARY
35.Lb libc
36.Sh SYNOPSIS
37.In wchar.h
38.Ft size_t
ad3c9f2a
A
39.Fo mbrlen
40.Fa "const char *restrict s"
41.Fa "size_t n"
42.Fa "mbstate_t *restrict ps"
43.Fc
44.In wchar.h
45.In xlocale.h
46.Ft size_t
47.Fo mbrlen_l
48.Fa "const char *restrict s"
49.Fa "size_t n"
50.Fa "mbstate_t *restrict ps"
51.Fa "locale_t loc"
52.Fc
9385eb3d
A
53.Sh DESCRIPTION
54The
55.Fn mbrlen
3d9156a7 56function inspects at most
9385eb3d 57.Fa n
ad3c9f2a
A
58bytes, pointed to by
59.Fa s ,
3d9156a7
A
60to determine the number of bytes needed to complete the next
61multibyte character.
9385eb3d
A
62.Pp
63The
64.Vt mbstate_t
65argument,
66.Fa ps ,
67is used to keep track of the shift state.
68If it is
69.Dv NULL ,
70.Fn mbrlen
71uses an internal, static
72.Vt mbstate_t
3d9156a7
A
73object, which is initialized to the initial conversion state
74at program startup.
9385eb3d
A
75.Pp
76It is equivalent to:
77.Pp
78.Dl "mbrtowc(NULL, s, n, ps);"
79.Pp
ad3c9f2a 80Except that, when
9385eb3d
A
81.Fa ps
82is a
83.Dv NULL
84pointer,
85.Fn mbrlen
86uses its own static, internal
87.Vt mbstate_t
88object to keep track of the shift state.
ad3c9f2a
A
89.Pp
90Although the
91.Fn mbrlen
92function uses the current locale, the
93.Fn mbrlen_l
94function may be passed a locale directly. See
95.Xr xlocale 3
96for more information.
9385eb3d
A
97.Sh RETURN VALUES
98The
99.Fn mbrlen
100functions returns:
101.Bl -tag -width indent
102.It 0
3d9156a7 103The next
9385eb3d 104.Fa n
3d9156a7 105or fewer bytes
9385eb3d
A
106represent the null wide character
107.Pq Li "L'\e0'" .
108.It >0
3d9156a7 109The next
9385eb3d 110.Fa n
3d9156a7 111or fewer bytes
9385eb3d 112represent a valid character,
3d9156a7
A
113.Fn mbrlen
114returns the number of bytes used to complete the multibyte character.
9385eb3d 115.It Po Vt size_t Pc Ns \-2
3d9156a7 116The next
9385eb3d 117.Fa n
3d9156a7
A
118contribute to, but do not complete, a valid multibyte character sequence,
119and all
120.Fa n
121bytes have been processed.
9385eb3d 122.It Po Vt size_t Pc Ns \-1
3d9156a7
A
123An encoding error has occurred.
124The next
125.Fa n
126or fewer bytes do not contribute to a valid multibyte character.
9385eb3d
A
127.El
128.Sh EXAMPLES
3d9156a7 129A function that calculates the number of characters in a multibyte
9385eb3d
A
130character string:
131.Bd -literal -offset indent
132size_t
133nchars(const char *s)
134{
135 size_t charlen, chars;
136 mbstate_t mbs;
137
138 chars = 0;
139 memset(&mbs, 0, sizeof(mbs));
140 while ((charlen = mbrlen(s, MB_CUR_MAX, &mbs)) != 0 &&
141 charlen != (size_t)-1 && charlen != (size_t)-2) {
142 s += charlen;
143 chars++;
144 }
145
146 return (chars);
147}
148.Ed
149.Sh ERRORS
150The
151.Fn mbrlen
152function will fail if:
153.Bl -tag -width Er
9385eb3d
A
154.It Bq Er EILSEQ
155An invalid multibyte sequence was detected.
3d9156a7
A
156.It Bq Er EINVAL
157The conversion state is invalid.
9385eb3d
A
158.El
159.Sh SEE ALSO
160.Xr mblen 3 ,
3d9156a7 161.Xr mbrtowc 3 ,
ad3c9f2a
A
162.Xr multibyte 3 ,
163.Xr xlocale 3
9385eb3d
A
164.Sh STANDARDS
165The
166.Fn mbrlen
167function conforms to
168.St -isoC-99 .