OSDN Git Service

(split) LDP: Release pages for LDP v3.39.
[linuxjm/LDP_man-pages.git] / release / man3 / fputwc.3
1 .\" Copyright (c) Bruno Haible <haible@clisp.cons.org>
2 .\"
3 .\" This is free documentation; you can redistribute it and/or
4 .\" modify it under the terms of the GNU General Public License as
5 .\" published by the Free Software Foundation; either version 2 of
6 .\" the License, or (at your option) any later version.
7 .\"
8 .\" References consulted:
9 .\"   GNU glibc-2 source code and manual
10 .\"   Dinkumware C library reference http://www.dinkumware.com/
11 .\"   OpenGroup's Single UNIX specification http://www.UNIX-systems.org/online.html
12 .\"   ISO/IEC 9899:1999
13 .\"
14 .\"*******************************************************************
15 .\"
16 .\" This file was generated with po4a. Translate the source file.
17 .\"
18 .\"*******************************************************************
19 .TH FPUTWC 3 1999\-07\-25 GNU "Linux Programmer's Manual"
20 .SH 名前
21 fputwc, putwc \- ワイド文字を FILE ストリームに書き込む
22 .SH 書式
23 .nf
24 \fB#include <stdio.h>\fP
25 .br
26 \fB#include <wchar.h>\fP
27 .sp
28 \fBwint_t fputwc(wchar_t \fP\fIwc\fP\fB, FILE *\fP\fIstream\fP\fB);\fP
29 \fBwint_t putwc(wchar_t \fP\fIwc\fP\fB, FILE *\fP\fIstream\fP\fB);\fP
30 .fi
31 .SH 説明
32 \fBfputwc\fP()  関数は、 \fBfputc\fP(3)  に対応するワイド文字関数である。この 関数は、ワイド文字 \fIwc\fP を
33 \fIstream\fP に書き込む。 \fIferror(stream)\fP が真になると、この関数は \fBWEOF\fP を返す。
34 ワイド文字変換でエラーが発生した場合は、 \fIerrno\fP に \fBEILSEQ\fP をセットし、 \fBWEOF\fP を返す。
35 それ以外の場合では、この関数は \fIwc\fP を返す。
36 .PP
37 \fBputwc\fP()  関数あるいはマクロは、 \fBfputwc\fP()  と全く同じ動作をする。
38 この関数はマクロとして実装されるかもしれないので、引き数が複数回評価さ れるかもしれない。この関数を使う理由はもはや存在しない。
39 .PP
40 これらの処理を停止せずに行いたいときは、 \fBunlocked_stdio\fP(3)  を参照のこと。
41 .SH 返り値
42 \fBfputwc\fP()  関数は、エラーが起きなければ \fIwc\fP を返す。エラーの場合には \fBWEOF\fP を返す。
43 .SH エラー
44 通常のエラーに加えて、以下のエラーがある:
45 .TP 
46 \fBEILSEQ\fP
47 \fIwc\fP からストリームの符号への変換に失敗した。
48 .SH 準拠
49 C99, POSIX.1\-2001.
50 .SH 注意
51 \fBfputwc\fP()  の動作は現在のロケールの \fBLC_CTYPE\fP カテゴリに依存する。
52 .PP
53 \fBfopen\fP(3)  システムコールに渡す追加情報がない場合には、 \fBfputwc\fP()  は 実際にはワイド文字 \fIwc\fP
54 に対応するマルチバイトシーケンスを書き込むと 期待してよい。
55 .SH 関連項目
56 \fBfgetwc\fP(3), \fBfputws\fP(3), \fBunlocked_stdio\fP(3)