2004-01-24 19:58:54 +03:00
|
|
|
.\" $NetBSD: mbsrtowcs.3,v 1.8 2004/01/24 16:58:54 wiz Exp $
|
2002-03-18 09:00:26 +03:00
|
|
|
.\"
|
|
|
|
.\" Copyright (c)2002 Citrus Project,
|
|
|
|
.\" 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 AUTHOR 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 AUTHOR 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.
|
|
|
|
.\"
|
2002-03-18 10:56:28 +03:00
|
|
|
.Dd February 4, 2002
|
2002-03-18 09:00:26 +03:00
|
|
|
.Dt MBSRTOWCS 3
|
|
|
|
.Os
|
|
|
|
.\" ----------------------------------------------------------------------
|
|
|
|
.Sh NAME
|
|
|
|
.Nm mbsrtowcs
|
|
|
|
.Nd converts a multibyte character string to a wide character string \
|
|
|
|
(restartable)
|
|
|
|
.\" ----------------------------------------------------------------------
|
|
|
|
.Sh LIBRARY
|
|
|
|
.Lb libc
|
|
|
|
.\" ----------------------------------------------------------------------
|
|
|
|
.Sh SYNOPSIS
|
2003-04-16 17:34:34 +04:00
|
|
|
.In wchar.h
|
2002-03-18 09:00:26 +03:00
|
|
|
.Ft size_t
|
|
|
|
.Fn mbsrtowcs "wchar_t * restrict pwcs" "const char ** restrict s" "size_t n" \
|
|
|
|
"mbstate_t * restrict ps"
|
|
|
|
.\" ----------------------------------------------------------------------
|
|
|
|
.Sh DESCRIPTION
|
|
|
|
The
|
|
|
|
.Fn mbsrtowcs
|
2004-01-24 19:58:54 +03:00
|
|
|
converts the multibyte character string indirectly pointed to by
|
2002-03-18 09:00:26 +03:00
|
|
|
.Fa s
|
2004-01-24 19:58:54 +03:00
|
|
|
to the corresponding wide character string, and stores it in the
|
|
|
|
array pointed to by
|
2002-03-18 09:00:26 +03:00
|
|
|
.Fa pwcs .
|
2002-03-18 10:56:28 +03:00
|
|
|
The conversion stops due to the following reasons:
|
2002-03-18 09:00:26 +03:00
|
|
|
.Bl -bullet
|
|
|
|
.It
|
|
|
|
The conversion reaches a null byte.
|
|
|
|
In this case, the null byte is also converted.
|
|
|
|
.It
|
|
|
|
The
|
|
|
|
.Fn mbsrtowcs
|
|
|
|
has already stored
|
|
|
|
.Fa n
|
|
|
|
wide characters.
|
|
|
|
.It
|
|
|
|
The conversion encounters an invalid character.
|
|
|
|
.El
|
|
|
|
.Pp
|
2004-01-21 15:40:14 +03:00
|
|
|
Each character will be converted as if
|
2002-03-18 09:00:26 +03:00
|
|
|
.Xr mbrtowc 3
|
|
|
|
is continuously called.
|
|
|
|
.Pp
|
|
|
|
After conversion,
|
|
|
|
if
|
|
|
|
.Fa pwcs
|
2004-01-24 19:58:54 +03:00
|
|
|
is not a
|
|
|
|
.Dv NULL
|
|
|
|
pointer,
|
|
|
|
the pointer object pointed to by
|
2002-03-18 09:00:26 +03:00
|
|
|
.Fa s
|
2004-01-24 19:58:54 +03:00
|
|
|
is a
|
|
|
|
.Dv NULL
|
|
|
|
pointer (if the conversion is stopped due to reaching a null byte)
|
2002-03-18 09:00:26 +03:00
|
|
|
or the first byte of the character just after the last character converted.
|
|
|
|
.Pp
|
|
|
|
If
|
|
|
|
.Fa pwcs
|
2004-01-24 19:58:54 +03:00
|
|
|
is not a
|
|
|
|
.Dv NULL
|
|
|
|
pointer and the conversion is stopped due to reaching
|
2002-03-18 09:00:26 +03:00
|
|
|
a null byte, the
|
|
|
|
.Fn mbsrtowcs
|
2004-01-24 19:58:54 +03:00
|
|
|
places the state object pointed to by
|
2002-03-18 09:00:26 +03:00
|
|
|
.Fa ps
|
2004-01-24 19:58:54 +03:00
|
|
|
to an initial state after the conversion has taken place.
|
2002-03-18 09:00:26 +03:00
|
|
|
.Pp
|
2004-01-24 19:58:54 +03:00
|
|
|
The behaviour of
|
2002-03-18 09:00:26 +03:00
|
|
|
.Fn mbsrtowcs
|
2004-01-24 19:58:54 +03:00
|
|
|
is affected by the
|
|
|
|
.Dv LC_CTYPE
|
|
|
|
category of the current locale.
|
2002-03-18 09:00:26 +03:00
|
|
|
.Pp
|
2004-01-24 19:58:54 +03:00
|
|
|
These are the special cases:
|
2002-03-18 09:00:26 +03:00
|
|
|
.Bl -tag -width 012345678901
|
|
|
|
.It "s == NULL || *s == NULL"
|
2004-01-24 19:58:54 +03:00
|
|
|
Undefined (may cause the program to crash).
|
2002-03-18 09:00:26 +03:00
|
|
|
.It "pwcs == NULL"
|
2004-01-24 19:58:54 +03:00
|
|
|
The conversion has taken place, but the resulting wide character string
|
|
|
|
was discarded.
|
|
|
|
In this case, the pointer object pointed to by
|
2002-03-18 09:00:26 +03:00
|
|
|
.Fa s
|
|
|
|
is not modified and
|
|
|
|
.Fa n
|
|
|
|
is ignored.
|
|
|
|
.It "ps == NULL"
|
|
|
|
The
|
|
|
|
.Fn mbsrtowcs
|
|
|
|
uses its own internal state object to keep the conversion state,
|
|
|
|
instead of
|
|
|
|
.Fa ps
|
|
|
|
mentioned in this manual page.
|
|
|
|
.Pp
|
2004-01-24 19:58:54 +03:00
|
|
|
Calling any other functions in
|
2002-03-18 09:00:26 +03:00
|
|
|
.Lb libc
|
2004-01-24 19:58:54 +03:00
|
|
|
never changes the internal state of
|
2002-03-18 09:00:26 +03:00
|
|
|
.Fn mbsrtowcs ,
|
2004-01-24 19:58:54 +03:00
|
|
|
which is initialized at startup time of the program.
|
2002-03-18 09:00:26 +03:00
|
|
|
.El
|
|
|
|
.\" ----------------------------------------------------------------------
|
|
|
|
.Sh RETURN VALUES
|
|
|
|
.Fn mbsrtowcs
|
2004-01-24 19:58:54 +03:00
|
|
|
returns:
|
2002-03-18 09:00:26 +03:00
|
|
|
.Bl -tag -width 012345678901
|
2002-03-25 22:22:13 +03:00
|
|
|
.It 0 or positive
|
2004-01-24 19:58:54 +03:00
|
|
|
The value returned is the number of elements stored in the array
|
|
|
|
pointed to by
|
2002-03-18 09:00:26 +03:00
|
|
|
.Fa pwcs ,
|
2004-01-24 19:58:54 +03:00
|
|
|
except for a terminating null wide character (if any).
|
2002-03-18 09:00:26 +03:00
|
|
|
If
|
|
|
|
.Fa pwcs
|
|
|
|
is not null and the value returned is equal to
|
|
|
|
.Fa n ,
|
2004-01-24 19:58:54 +03:00
|
|
|
the wide character string pointed to by
|
2002-03-18 09:00:26 +03:00
|
|
|
.Fa pwcs
|
|
|
|
is not null terminated.
|
|
|
|
If
|
|
|
|
.Fa pwcs
|
|
|
|
is a null pointer, the value returned is the number of elements to contain
|
2004-01-24 19:58:54 +03:00
|
|
|
the whole string converted, except for a terminating null wide character.
|
2002-03-18 09:00:26 +03:00
|
|
|
.It (size_t)-1
|
2004-01-24 19:58:54 +03:00
|
|
|
The array indirectly pointed to by
|
2002-03-18 09:00:26 +03:00
|
|
|
.Fa s
|
|
|
|
contains a byte sequence forming invalid character.
|
2004-01-24 19:58:54 +03:00
|
|
|
In this case,
|
2002-03-18 09:00:26 +03:00
|
|
|
.Fn mbsrtowcs
|
2004-01-24 19:58:54 +03:00
|
|
|
sets
|
|
|
|
.Va errno
|
|
|
|
to indicate the error.
|
2002-03-18 09:00:26 +03:00
|
|
|
.El
|
|
|
|
.\" ----------------------------------------------------------------------
|
|
|
|
.Sh ERRORS
|
|
|
|
.Fn mbsrtowcs
|
2004-01-24 19:58:54 +03:00
|
|
|
may cause an error in the following case:
|
2002-03-18 09:00:26 +03:00
|
|
|
.Bl -tag -width Er
|
|
|
|
.It Bq Er EILSEQ
|
2004-01-24 19:58:54 +03:00
|
|
|
The pointer pointed to by
|
2002-03-18 09:00:26 +03:00
|
|
|
.Fa s
|
2004-01-24 19:58:54 +03:00
|
|
|
points to an invalid or incomplete multibyte character.
|
2002-03-18 09:00:26 +03:00
|
|
|
.It Bq Er EINVAL
|
|
|
|
.Fa ps
|
2004-01-24 19:58:54 +03:00
|
|
|
points to an invalid or uninitialized mbstate_t object.
|
2002-03-18 09:00:26 +03:00
|
|
|
.El
|
|
|
|
.\" ----------------------------------------------------------------------
|
|
|
|
.Sh SEE ALSO
|
|
|
|
.Xr mbrtowc 3 ,
|
2002-03-18 10:56:28 +03:00
|
|
|
.Xr mbstowcs 3 ,
|
|
|
|
.Xr setlocale 3
|
2002-03-18 09:00:26 +03:00
|
|
|
.\" ----------------------------------------------------------------------
|
|
|
|
.Sh STANDARDS
|
|
|
|
The
|
|
|
|
.Fn mbsrtowcs
|
|
|
|
function conforms to
|
|
|
|
.St -isoC-amd1 .
|
|
|
|
The restrict qualifier is added at
|
2003-09-08 21:54:31 +04:00
|
|
|
.St -isoC-99 .
|