_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 (を参照してください) は、これらの関数は stream または format が 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 関数の書式指定フィールド」を参照してください。
必要条件
関数 |
必須ヘッダー |
---|---|
_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::Write
参照
関連項目
_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