OSDN Git Service

(split) Convert contrib and obsolete pages to UTF-8.
[linuxjm/LDP_man-pages.git] / obsolete / man3 / wcstombs.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:29:47 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 17:42:04 1993 by Rik Faith (faith@cs.unc.edu)
33 .TH WCSTOMBS 3  "March 29, 1993" "GNU" "Linux Programmer's Manual"
34 .SH 名前
35 wcstombs \- ワイド文字列をマルチバイト文字列に変換する
36 .SH 書式
37 .nf
38 .B #include <stdlib.h>
39 .sp
40 .BI "size_t wcstombs(char *" s ", const wchar_t *" pwcs ", size_t " n );
41 .fi
42 .SH 説明
43 \fBwcstombs()\fP 関数は \fIpwcs\fP で示される配列のワイド文字の列を
44 マルチバイト文字の列に変換し、配列 \fIs\fP に \fIn\fP 文字までのマルチ
45 バイト文字を格納する。
46 .SH "返り値"
47 \fBwcstombs()\fP は \fIs\fP に格納されたバイト数を返す。
48 もし\fIpwcs\fP が無効なワイド文字を含む場合、\-1 を返す。
49 .SH "準拠"
50 SVID 3, ISO 9899
51 .SH "関連項目"
52 .BR mblen "(3), " mbtowc "(3), " mbstowcs "(3), " wctomb (3)
53