fwideのヘルプ・マニュアル
日本語 英語
fwide --help
man fwide
FWIDE(3) Linux Programmer’s Manual FWIDE(3)
名前
fwide - FILE ストリームの入出力単位を設定または取得する
書式
#include
int fwide(FILE *stream, int mode);
fwide(): _XOPEN_SOURCE >= 500 || _ISOC99_SOURCE; または cc -std=c99
説明
mode がゼロならば fwide() 関数は stream の現在の入出力単位を決定して返
す。stream がワイド文字単位のとき、すなわちワイド文字 I/O は許されて バ
イ ト (char) I/O は許されていないときには、正の値を返す。 stream がバイ
ト単位のとき、すなわちバイト I/O は許されてワイド文字 I/O は許されて い
な いときには、負の値を返す。 stream の入出力単位がまだ決定されていない
場合にはゼロが返される。この場合には次の I/O 操作によって入出力単位が変
更 される (バイト I/O 操作の場合にはバイト単位に、ワイド文字 I/O 操作の
場合にはワイド文字単位になる)。
一度ストリームの入出力単位が決まると、変更することはできず、ストリー ム
がクローズ (close) されるまで保持される。
mode がゼロでない場合には fwide() 関数は最初に stream の入出力単位を設
定しようとする (mode が 0 より大きい場合にはワイド文字単位に、 mode が
0 より小さい場合にはバイト単位に設定しようとする)。そして上記と同様に現
在の入出力単位を返す。
返り値
fwide() 関数はストリームの入出力単位の設定を試みた後にその値を返す。 正
の 返り値はワイド文字単位を、負の返り値はバイト単位を意味する。返り値が
0 ならば未決定を意味する。
準拠
C99, POSIX.1-2001.
注意
バイト単位のストリームにワイド文字を出力にするには fprintf(3) 関 数 の
%lc 変換や %ls 変換を使用することができる。
ワイド文字単位のストリームにバイト単位の出力を行うには fwprintf(3) 関数
の %c 変換や %s 変換を使用することができる。
関連項目
fprintf(3), fwprintf(3)
GNU 2007-07-26 FWIDE(3)
FWIDE(3) Linux Programmer’s Manual FWIDE(3)
NAME
fwide - set and determine the orientation of a FILE stream
SYNOPSIS
#include
int fwide(FILE *stream, int mode);
Feature Test Macro Requirements for glibc (see feature_test_macros(7)):
fwide(): _XOPEN_SOURCE >= 500 || _ISOC99_SOURCE; or cc -std=c99
DESCRIPTION
When mode is zero, the fwide() function determines the current orienta-
tion of stream. It returns a positive value if stream is wide-charac-
ter oriented, that is, if wide-character I/O is permitted but char I/O
is disallowed. It returns a negative value if stream is byte oriented,
i.e., if char I/O is permitted but wide-character I/O is disallowed.
It returns zero if stream has no orientation yet; in this case the next
I/O operation might change the orientation (to byte oriented if it is a
char I/O operation, or to wide-character oriented if it is a wide-char-
acter I/O operation).
Once a stream has an orientation, it cannot be changed and persists
until the stream is closed.
When mode is non-zero, the fwide() function first attempts to set
stream’s orientation (to wide-character oriented if mode is greater
than 0, or to byte oriented if mode is less than 0). It then returns a
value denoting the current orientation, as above.
RETURN VALUE
The fwide() function returns the stream’s orientation, after possibly
changing it. A positive return value means wide-character oriented. A
negative return value means byte oriented. A return value of zero
means undecided.
CONFORMING TO
C99, POSIX.1-2001.
NOTES
Wide-character output to a byte oriented stream can be performed
through the fprintf(3) function with the %lc and %ls directives.
Char oriented output to a wide-character oriented stream can be per-
formed through the fwprintf(3) function with the %c and %s directives.
SEE ALSO
fprintf(3), fwprintf(3)
COLOPHON
This page is part of release 3.22 of the Linux man-pages project. A
description of the project, and information about reporting bugs, can
be found at http://www.kernel.org/doc/man-pages/.
GNU 2007-07-26 FWIDE(3)