mbrtoc16.3 revision 1.4 $NetBSD: mbrtoc16.3,v 1.4 2024/08/16 13:33:35 riastradh Exp $ Copyright (c) 2024 The NetBSD Foundation, Inc. All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE..Dd August 14, 2024
.Dt MBRTOC16 3
.Os
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""".Sh NAME
.Nm mbrtoc16
.Nd Restartable multibyte to UTF-16 code unit conversion
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""".Sh LIBRARY
.Lb libc
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""".Sh SYNOPSIS
.
n uchar.h .
.Ft size_t
.Fo mbrtoc16
.Fa "char16_t * restrict pc16"
.Fa "const char * restrict s"
.Fa "size_t n"
.Fa "mbstate_t * restrict ps"
.Fc
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""".Sh DESCRIPTION
The
.Nm
function attempts to decode a multibyte character sequence at
.Fa s
of up to
.Fa n
bytes in the current locale, and yield the content as UTF-16 code
units via the output parameter
.Fa pc16 .
.Fa pc16
may be null, in which case no output is stored.
l -bullet t If the multibyte sequence at
.Fa s
is invalid or an error occurs in decoding,
.Nm
returns
.Li (size_t)-1
and sets
.Xr errno 2
to indicate the error.
t If the multibyte sequence at
.Fa s
is still incomplete after
.Fa n
bytes, including any previously processed input saved in
.Fa ps ,
.Nm
saves its state in
.Fa ps
after all the input so far and returns
.Li "(size_t)-2".
t If
.Nm
finds the null scalar value at
.Fa s ,
then it stores zero at
.Li * Ns Fa pc16
and returns zero.
t If
.Nm
finds a nonnull scalar value in the Basic Multilingual Plane (BMP),
i.e., a 16-bit scalar value, then it stores the scalar value at
.Li * Ns Fa pc16 ,
and returns the number of bytes it read from the input.
t If
.Nm
finds a scalar value outside the BMP, then it:
l -dash -compact t stores the scalar value's high surrogate code point at
.Li * Ns Fa pc16 ;
t stores conversion state in
.Fa ps
to remember the rest of the pending scalar value; and
t returns the number of bytes it read from the input.
.El
t If
.Nm
had previously found a scalar value outside the BMP, then, instead of
any of the above options, it:
l -dash -compact t stores the scalar value's low surrogate code point at
.Li * Ns Fa pc16 ;
t consumes rest of the pending scalar value from the conversion state
.Fa ps ;
and
t returns
.Li (size_t)-3
to indicate that no bytes were consumed but a code unit was yielded
nevertheless.
.El
.El
p
If
.Fa s
is a null pointer, the
.Nm
call is equivalent to:
d -ragged -offset indent .Fo mbrtoc16
.Li NULL ,
.Li \*q\*q ,
.Li 1 ,
.Fa ps
.Fc
.Ed
p
This always returns zero, and has the effect of resetting
.Fa ps
to the initial conversion state, without writing to
.Fa pc16 ,
even if it is nonnull.
p
If
.Fa ps
is a null pointer,
.Nm
uses an internal
.Vt mbstate_t
object with static storage duration, distinct from all other
.Vt mbstate_t
objects
o
including those used by
.Xr mbrtoc32 3 ,
.Xr c16rtomb 3 ,
and
.Xr c32rtomb 3
c ,
which is initialized at program startup to the initial conversion
state.
""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
.Sh RETURN VALUES
The
.Nm
function returns:
l -tag -width Li t Li 0 q null if
.Nm
decoded a null multibyte character.
t Ar i q code unit where
.Li 0
\*(Le
.Ar i
\*(Le
.Fa n ,
if
.Nm
consumed
.Ar i
bytes of input to decode the next multibyte character, yielding a
(nonnull) UTF-16 code unit, either a Unicode scalar value in the BMP or
a high surrogate code point.
t Li (size_t)-3 q continuation if
.Nm
consumed no bytes of input but yielded a (nonnull) UTF-16 code unit, a
low surrogate code point, because the previous call to
.Nm
with
.Fa ps
had yielded a high surrogate code point for a Unicode scalar value
outside the BMP.
t Li (size_t)-2 q incomplete if
.Nm
found an incomplete multibyte character after all
.Fa n
bytes of input, and saved its state to restart in the next call with
.Fa ps .
t Li (size_t)-1 q error if any encoding error was detected;
.Xr errno 2
is set to reflect the error.
.El
""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
.Sh EXAMPLES
Print the UTF-16 code units of a multibyte string in hexadecimal text:
d -literal -offset indent char *s = ...;
size_t n = ...;
mbstate_t mbs = {0}; /* initial conversion state */
while (n) {
char16_t c16;
size_t len;
len = mbrtoc16(&c16, s, n, &mbs);
switch (len) {
case 0: /* null terminator */
assert(c16 == L'\e0');
goto out;
default: /* scalar value or high surrogate */
printf("U+%04"PRIx16"\en", (uint16_t)c16);
break;
case (size_t)-3: /* low surrogate */
printf("continue U+%04"PRIx16"\en", (uint16_t)c16);
break;
case (size_t)-2: /* incomplete */
printf("incomplete\en");
goto readmore;
case (size_t)-1: /* error */
printf("error: %d\en", errno);
goto out;
}
s += len;
n -= len;
}
.Ed
""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
.Sh ERRORS
l -tag -width Bq t Bq Er EILSEQ The multibyte sequence cannot be decoded as a Unicode scalar value.
t Bq Er EIO An error occurred in loading the locale's character conversions.
.El
""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
.Sh SEE ALSO
.Xr c16rtomb 3 ,
.Xr c32rtomb 3 ,
.Xr mbrtoc32 3 ,
.Xr uchar 3
.Rs
.%B The Unicode Standard
.%O Version 15.0 \(em Core Specification
.%Q The Unicode Consortium
.%D September 2022
.%U https://www.unicode.org/versions/Unicode15.0.0/UnicodeStandard-15.0.pdf
.Re
.Rs
.%A P. Hoffman
.%A F. Yergeau
.%T UTF-16, an encoding of ISO 10646
.%R RFC 2781
.%D February 2000
.%I Internet Engineering Task Force
.%U https://datatracker.ietf.org/doc/html/rfc2781
.Re
""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
.Sh STANDARDS
The
.Nm
function conforms to
.St -isoC-2011 .
""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
.Sh HISTORY
The
.Nm
function first appeared in
.Nx 11.0 .