OSDN Git Service

(split) Convert contrib and obsolete pages to UTF-8.
[linuxjm/LDP_man-pages.git] / obsolete / man3 / mbstowcs.3
1 .\" Copyright 1993 David Metcalfe (david@prism.demon.co.uk)
2 .\"
3 .\" Japanese Version Copyright (c) 1997 HIROFUMI Nishizuka
4 .\"         all rights reserved.
5 .\" Translated Tue Dec 16 10:24:55 JST 1997
6 .\"         by HIROFUMI Nishizuka <nishi@rpts.cl.nec.co.jp>
7 .\"
8 .\" Permission is granted to make and distribute verbatim copies of this
9 .\" manual provided the copyright notice and this permission notice are
10 .\" preserved on all copies.
11 .\"
12 .\" Permission is granted to copy and distribute modified versions of this
13 .\" manual under the conditions for verbatim copying, provided that the
14 .\" entire resulting derived work is distributed under the terms of a
15 .\" permission notice identical to this one
16 .\" 
17 .\" Since the Linux kernel and libraries are constantly changing, this
18 .\" manual page may be incorrect or out-of-date.  The author(s) assume no
19 .\" responsibility for errors or omissions, or for damages resulting from
20 .\" the use of the information contained herein.  The author(s) may not
21 .\" have taken the same level of care in the production of this manual,
22 .\" which is licensed free of charge, as they might when working
23 .\" professionally.
24 .\" 
25 .\" Formatted or processed versions of this manual, if unaccompanied by
26 .\" the source, must acknowledge the copyright and authors of this work.
27 .\"
28 .\" References consulted:
29 .\"     Linux libc source code
30 .\"     Lewine's _POSIX Programmer's Guide_ (O'Reilly & Associates, 1991)
31 .\"     386BSD man pages
32 .\" Modified Sat Jul 24 18:59:02 1993 by Rik Faith (faith@cs.unc.edu)
33 .TH MBSTOWCS 3  "March 29, 1993" "GNU" "Linux Programmer's Manual"
34 .SH 名前
35 mbstowcs \- マルチバイト文字列をワイド文字列に変換する
36 .SH 書式
37 .nf
38 .B #include <stdlib.h>
39 .sp
40 .BI "size_t mbstowcs(wchar_t *" pwcs ", const char *" s ", size_t " n );
41 .fi
42 .SH 説明
43 \fBmbstowcs()\fP 関数は配列 \fIs\fP のマルチバイト文字の列をワイド文字の列に
44 変換し、配列 \fIpwcs\fP に \fIn\fP バイトまで格納する。
45 .SH "返り値"
46 \fBmbstowcs()\fP は格納されたワイド文字の数を返す。
47 もし \fIs\fP が無効なマルチバイト文字を含む場合、\-1 を返す。
48 .SH "準拠"
49 SVID 3, ISO 9899
50 .SH "関連項目"
51 .BR mblen "(3), " mbtowc "(3), " wcstombs "(3), " wctomb (3) 
52