std::fsetpos
提供:cppreference.com
|
|
This page has been machine-translated from the English version of the wiki using Google Translate.
The translation may contain errors and awkward wording. Hover over text to see the original version. You can help to fix errors and improve the translation. For instructions click here. |
| Defined in header <cstdio>
|
||
| int fsetpos( std::FILE* stream, const std::fpos_t* pos ); |
||
streamposが指す値に応じて、Cファイルストリームのファイル位置指示子とマルチバイトの解析状態を(もしあれば)を設定します。. Original:
Sets the file position indicator and the multibyte parsing state (if any) for the C file stream
stream according to the value pointed to by pos. The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
You can help to correct and verify the translation. Click here for instructions.
新しい解析状態および位置を確立する以外に、この関数を呼び出すと、std::ungetcの効果を取り消し、それが設定されている場合は、ファイルの終わり状態をクリアし.
Original:
Besides establishing new parse state and position, a call to this function undoes the effects of std::ungetc and clears the end-of-file state, if it is set.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
You can help to correct and verify the translation. Click here for instructions.
エラーが発生した読み取りまたは書き込みをした場合、ストリームのエラーインジケータが(std::ferror)が設定されている.
Original:
If a read or write error occurs, the error indicator (std::ferror)for the stream is set.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
You can help to correct and verify the translation. Click here for instructions.
[編集] パラメータ
| stream | - | 変更するには、ストリームをファイルしてください
Original: file stream to modify The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
| pos | - | 同じファイルに関連付けられているストリームに呼び出さfpos_tから得std::fgetposオブジェクトへのポインタ
Original: pointer to a fpos_t object obtained from std::fgetpos called on a stream associated with the same file The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
[編集] 値を返します
成功時に0、そうでなければゼロ以外の値。また、失敗した場合にerrnoを設定.
Original:
0 upon success, nonzero value otherwise. Also, sets errno on failure.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
You can help to correct and verify the translation. Click here for instructions.
[編集] も参照してください
| ファイル位置指示子を取得します Original: gets the file position indicator The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (機能) | |
| 現在のファイル位置指示子を返します Original: returns the current file position indicator The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (機能) | |
| ファイル位置指示子は、ファイル内の特定の場所に移動します Original: moves the file position indicator to a specific location in a file The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (機能) | |
| C documentation for fsetpos
| |