OSDN Git Service

(split) LDP: Update original to LDP v3.65
[linuxjm/LDP_man-pages.git] / original / man3 / mbsnrtowcs.3
index bbd1d71..d386be3 100644 (file)
@@ -1,16 +1,18 @@
 .\" Copyright (c) Bruno Haible <haible@clisp.cons.org>
 .\"
+.\" %%%LICENSE_START(GPLv2+_DOC_ONEPARA)
 .\" This is free documentation; you can redistribute it and/or
 .\" modify it under the terms of the GNU General Public License as
 .\" published by the Free Software Foundation; either version 2 of
 .\" the License, or (at your option) any later version.
+.\" %%%LICENSE_END
 .\"
 .\" References consulted:
 .\"   GNU glibc-2 source code and manual
 .\"   Dinkumware C library reference http://www.dinkumware.com/
 .\"   OpenGroup's Single UNIX specification http://www.UNIX-systems.org/online.html
 .\"
-.TH MBSNRTOWCS 3  2011-10-01 "GNU" "Linux Programmer's Manual"
+.TH MBSNRTOWCS 3  2014-03-18 "GNU" "Linux Programmer's Manual"
 .SH NAME
 mbsnrtowcs \- convert a multibyte string to a wide-character string
 .SH SYNOPSIS
@@ -45,60 +47,107 @@ The
 function is like the
 .BR mbsrtowcs (3)
 function, except that
-the number of bytes to be converted, starting at \fI*src\fP, is limited to
-\fInms\fP.
+the number of bytes to be converted, starting at
+.IR *src ,
+is limited to
+.IR nms .
 .PP
-If \fIdest\fP is not a NULL pointer, the
+If
+.I dest
+is not NULL, the
 .BR mbsnrtowcs ()
 function converts at
-most \fInms\fP bytes from the
-multibyte string \fI*src\fP to a wide-character string starting at \fIdest\fP.
-At most \fIlen\fP wide characters are written to \fIdest\fP.
+most
+.I nms
+bytes from the
+multibyte string
+.I *src
+to a wide-character string starting at
+.IR dest .
+At most
+.I len
+wide characters are written to
+.IR dest .
 The shift state
-\fI*ps\fP is updated.
+.I *ps
+is updated.
 The conversion is effectively performed by repeatedly
 calling
 .I "mbrtowc(dest, *src, n, ps)"
-where \fIn\fP is some
+where
+.I n
+is some
 positive number, as long as this call succeeds, and then incrementing
-\fIdest\fP by one and \fI*src\fP by the number of bytes consumed.
+.I dest
+by one and
+.I *src
+by the number of bytes consumed.
 The
 conversion can stop for three reasons:
 .IP 1. 3
 An invalid multibyte sequence has been encountered.
-In this case \fI*src\fP
+In this case,
+.I *src
 is left pointing to the invalid multibyte sequence,
 .I (size_t)\ \-1
 is returned,
-and \fIerrno\fP is set to \fBEILSEQ\fP.
+and
+.I errno
+is set to
+.BR EILSEQ .
 .IP 2.
-The \fInms\fP limit forces a stop,
-or \fIlen\fP non-L\(aq\\0\(aq wide characters
-have been stored at \fIdest\fP.
-In this case \fI*src\fP is left pointing to the
+The
+.I nms
+limit forces a stop,
+or
+.I len
+non-L\(aq\\0\(aq wide characters
+have been stored at
+.IR dest .
+In this case,
+.I *src
+is left pointing to the
 next multibyte sequence to be converted, and the number of wide characters
-written to \fIdest\fP is returned.
+written to
+.I dest
+is returned.
 .IP 3.
 The multibyte string has been completely converted, including the
 terminating null wide character (\(aq\\0\(aq)
-(which has the side effect of bringing back \fI*ps\fP to the
+(which has the side effect of bringing back
+.I *ps
+to the
 initial state).
-In this case \fI*src\fP is set to NULL, and the number of wide
-characters written to \fIdest\fP,
+In this case,
+.I *src
+is set to NULL, and the number of wide
+characters written to
+.IR dest ,
 excluding the terminating null wide character,
 is returned.
 .PP
-If \fIdest\fP is NULL, \fIlen\fP is ignored, and the conversion proceeds as
+If
+.IR dest
+is NULL,
+.I len
+is ignored, and the conversion proceeds as
 above, except that the converted wide characters
 are not written out to memory,
 and that no destination length limit exists.
 .PP
-In both of the above cases, if \fIps\fP is a NULL pointer, a static anonymous
-state only known to the mbsnrtowcs function is used instead.
+In both of the above cases, if
+.I ps
+is NULL, a static anonymous
+state known only to the
+.BR mbsnrtowcs ()
+function is used instead.
 .PP
-The programmer must ensure that there is room for at least \fIlen\fP wide
-characters at \fIdest\fP.
-.SH "RETURN VALUE"
+The programmer must ensure that there is room for at least
+.I len
+wide
+characters at
+.IR dest .
+.SH RETURN VALUE
 The
 .BR mbsnrtowcs ()
 function returns the number of wide characters
@@ -107,8 +156,11 @@ not including the terminating null wide character.
 If an invalid multibyte sequence was
 encountered,
 .I (size_t)\ \-1
-is returned, and \fIerrno\fP set to \fBEILSEQ\fP.
-.SH "CONFORMING TO"
+is returned, and
+.I errno
+set to
+.BR EILSEQ .
+.SH CONFORMING TO
 POSIX.1-2008.
 .SH NOTES
 The behavior of
@@ -118,7 +170,19 @@ depends on the
 category of the
 current locale.
 .PP
-Passing NULL as \fIps\fP is not multithread safe.
-.SH "SEE ALSO"
+Passing NULL as
+.I ps
+is not multithread safe.
+.SH SEE ALSO
 .BR iconv (3),
+.BR mbrtowc (3)
+.BR mbsinit (3),
 .BR mbsrtowcs (3)
+.SH COLOPHON
+This page is part of release 3.65 of the Linux
+.I man-pages
+project.
+A description of the project,
+and information about reporting bugs,
+can be found at
+\%http://www.kernel.org/doc/man\-pages/.