2004-01-24 19:58:54 +03:00
|
|
|
.\" $NetBSD: mbstowcs.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 3, 2002
|
2002-03-18 09:00:26 +03:00
|
|
|
.Dt MBSTOWCS 3
|
|
|
|
.Os
|
|
|
|
.\" ----------------------------------------------------------------------
|
|
|
|
.Sh NAME
|
|
|
|
.Nm mbstowcs
|
|
|
|
.Nd converts a multibyte character string to a wide character string
|
|
|
|
.\" ----------------------------------------------------------------------
|
|
|
|
.Sh LIBRARY
|
|
|
|
.Lb libc
|
|
|
|
.\" ----------------------------------------------------------------------
|
|
|
|
.Sh SYNOPSIS
|
2003-04-16 17:34:34 +04:00
|
|
|
.In stdlib.h
|
2002-03-18 09:00:26 +03:00
|
|
|
.Ft size_t
|
|
|
|
.Fn mbstowcs "wchar_t * restrict pwcs" "const char * restrict s" "size_t n"
|
|
|
|
.\" ----------------------------------------------------------------------
|
|
|
|
.Sh DESCRIPTION
|
|
|
|
.Fn mbstowcs
|
2004-01-24 19:58:54 +03:00
|
|
|
converts a null-terminated multibyte character string 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 .
|
|
|
|
This function may modify the first at most
|
|
|
|
.Fa n
|
2004-01-24 19:58:54 +03:00
|
|
|
elements of the array pointed to by
|
2002-03-18 09:00:26 +03:00
|
|
|
.Fa pwcs .
|
2004-01-21 15:40:14 +03:00
|
|
|
Each character will be converted as if
|
2002-03-18 09:00:26 +03:00
|
|
|
.Xr mbtowc 3
|
|
|
|
is continuously called, except the internal state of
|
|
|
|
.Xr mbtowc 3
|
|
|
|
will not be affected.
|
|
|
|
.Pp
|
2004-01-24 19:58:54 +03:00
|
|
|
For state-dependent encoding,
|
2002-03-18 09:00:26 +03:00
|
|
|
.Fn mbstowcs
|
2004-01-24 19:58:54 +03:00
|
|
|
implies the multibyte character string pointed to by
|
2002-03-18 09:00:26 +03:00
|
|
|
.Fa s
|
2004-01-24 19:58:54 +03:00
|
|
|
always begins with an initial state.
|
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 pwcs == NULL
|
|
|
|
.Fn mbstowcs
|
|
|
|
returns the number of elements to store the whole wide character string
|
2004-01-24 19:58:54 +03:00
|
|
|
corresponding to the multibyte character string pointed to by
|
2002-03-18 09:00:26 +03:00
|
|
|
.Fa s .
|
|
|
|
In this case,
|
|
|
|
.Fa n
|
|
|
|
is ignored.
|
|
|
|
.It 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
|
|
|
.El
|
|
|
|
.\" ----------------------------------------------------------------------
|
|
|
|
.Sh RETURN VALUES
|
|
|
|
.Fn mbstowcs
|
|
|
|
returns:
|
|
|
|
.Bl -tag -width 012345678901
|
2002-03-25 23:01:22 +03:00
|
|
|
.It 0 or positive
|
2004-01-24 19:58:54 +03:00
|
|
|
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
|
|
|
There are no cases that the value returned is greater than
|
2002-03-18 09:00:26 +03:00
|
|
|
.Fa n
|
|
|
|
(unless
|
|
|
|
.Fa pwcs
|
2004-01-24 19:58:54 +03:00
|
|
|
is a null pointer) or the value of the
|
|
|
|
.Dv MB_CUR_MAX
|
|
|
|
macro.
|
2002-03-18 09:00:26 +03:00
|
|
|
If the return value is equal to
|
|
|
|
.Fa n ,
|
2004-01-24 19:58:54 +03:00
|
|
|
the string pointed to by
|
2002-03-18 09:00:26 +03:00
|
|
|
.Fa pwcs
|
|
|
|
will not be null-terminated.
|
|
|
|
.It (size_t)-1
|
|
|
|
.Fa s
|
2004-01-24 19:58:54 +03:00
|
|
|
points to a string containing an invalid or incomplete multibyte character.
|
2002-03-18 09:00:26 +03:00
|
|
|
The
|
|
|
|
.Fn mbstowcs
|
2004-01-24 19:58:54 +03:00
|
|
|
also sets
|
|
|
|
.Va errno
|
|
|
|
to indicate the error.
|
2002-03-18 09:00:26 +03:00
|
|
|
.El
|
|
|
|
.\" ----------------------------------------------------------------------
|
|
|
|
.Sh ERRORS
|
|
|
|
.Fn mbstowcs
|
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
|
|
|
|
.Fa s
|
2004-01-24 19:58:54 +03:00
|
|
|
points to a string containing an invalid or incomplete multibyte character.
|
2002-03-18 09:00:26 +03:00
|
|
|
.El
|
|
|
|
.\" ----------------------------------------------------------------------
|
|
|
|
.Sh SEE ALSO
|
2002-03-18 10:56:28 +03:00
|
|
|
.Xr mbtowc 3 ,
|
|
|
|
.Xr setlocale 3
|
2003-07-01 14:16:50 +04:00
|
|
|
.\" ----------------------------------------------------------------------
|
2002-03-18 09:00:26 +03:00
|
|
|
.Sh STANDARDS
|
|
|
|
The
|
|
|
|
.Fn mbstowcs
|
|
|
|
function conforms to
|
|
|
|
.St -ansiC .
|
|
|
|
The restrict qualifier is added at
|
2003-09-08 21:54:31 +04:00
|
|
|
.St -isoC-99 .
|