_fprintf_p、_fprintf_p_l、_fwprintf_p、_fwprintf_p_l
ストリームに書式付きデータを出力します。
int _fprintf_p(
FILE *stream,
const char *format [,
argument ]...
);
int _fprintf_p_l(
FILE *stream,
const char *format,
locale_t locale [,
argument ]...
);
int _fwprintf_p(
FILE *stream,
const wchar_t *format [,
argument ]...
);
int _fwprintf_p_l(
FILE *stream,
const wchar_t *format,
locale_t locale [,
argument ]...
);
パラメーター
stream
FILE 構造体へのポインター。format
書式指定文字列。argument
省略可能な引数。locale
使用するロケール。
戻り値
出力エラーが発生した場合 _fprintf_p と _fwprintf_p は書き込まれた文字数を返すかまたは負の値を返します。
解説
_fprintf_p は出力 stream一連の文字や値を書式化してに出力します。各関数 argument は format の対応する書式指定に応じてある変換され格納されます。_fprintf_p についてはformat の引数に _printf_p と同じ構文を使用できます。これらの関数は書式指定文字列で使用するパラメーターの順序を変更できることを意味する位置指定パラメーターをサポートします。位置指定パラメーターの詳細についてはprintf_p の位置指定パラメーター を参照してください。
_fwprintf_p は のワイド文字バージョンです _fprintf_p; _fwprintf_p ではformat はワイド文字列です。ストリームが ANSI モードで開かれている場合、これらの関数の動作は同じになります。_fprintf_p では、UNICODE ストリームへの出力はサポートされていません。
_l サフィックスが付いているこれらの関数の各バージョンは、現在のロケールの代わりに渡されたロケール パラメーターを使用する点を除いて同じです。
セキュリティに関するメモ |
---|
format にユーザー定義の文字列を指定しないでください。 |
セキュリティが万全ではないバージョンの方法 (fprintf、_fprintf_l、fwprintf、_fwprintf_l が表示されます。)これらの関数はパラメーターを検証しパラメーターの検証 に説明されているように無効なパラメーター ハンドラーを呼び出します。streamformat またはが null ポインターの場合またはが不明な場合や書式指定子が。実行の継続が許可された場合、関数は -1 を返し、errno を EINVAL に設定します。
汎用テキスト ルーチンのマップ
Tchar.h のルーチン |
_UNICODE および _MBCS が未定義の場合 |
_MBCS が定義されている場合 |
_UNICODE が定義されている場合 |
---|---|---|---|
_ftprintf_p |
_fprintf_p |
_fprintf_p |
_fwprintf_p |
_ftprintf_p_l |
_fprintf_p_l |
_fprintf_p_l |
_fwprintf_p_l |
詳細については、「scanf 関数と wscanf 関数の書式指定フィールド」を参照してください。
必要条件
Function |
必須ヘッダー |
---|---|
_fprintf_p, _fprintf_p_l |
<stdio.h> |
_fwprintf_p, _fwprintf_p_l |
<stdio.h> または <wchar.h> |
互換性の詳細については、「C ランタイム ライブラリ」の「互換性」を参照してください。
使用例
// crt_fprintf_p.c
// This program uses _fprintf_p to format various
// data and print it to the file named FPRINTF_P.OUT. It
// then displays FPRINTF_P.OUT on the screen using the system
// function to invoke the operating-system TYPE command.
//
#include <stdio.h>
#include <process.h>
int main( void )
{
FILE *stream = NULL;
int i = 10;
double fp = 1.5;
char s[] = "this is a string";
char c = '\n';
// Open the file
if ( fopen_s( &stream, "fprintf_p.out", "w" ) == 0)
{
// Format and print data
_fprintf_p( stream, "%2$s%1$c", c, s );
_fprintf_p( stream, "%d\n", i );
_fprintf_p( stream, "%f\n", fp );
// Close the file
fclose( stream );
}
// Verify our data
system( "type fprintf_p.out" );
}
同等の .NET Framework 関数
System:: IO:: StreamWriter:: 書き込み
参照
関連項目
_cprintf、_cprintf_l、_cwprintf、_cwprintf_l
fscanf、_fscanf_l、fwscanf、_fwscanf_l
sprintf、_sprintf_l、swprintf、_swprintf_l、__swprintf_l
_cprintf_p、_cprintf_p_l、_cwprintf_p、_cwprintf_p_l