std::ungetwc
提供: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 <cwchar>
|
||
| wint_t ungetc( wint_t ch, FILE *stream ); |
||
ワイド文字
chは、与えられたファイルストリームに戻して置きます. Original:
Puts the wide character
ch back to the given file stream. 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:
Only one wide character pushback is guaranteed.
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.
[編集] パラメータ
| ch | - | ワイド文字は戻すことができます
Original: wide character to be put back The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
| stream | - | に戻ってワイド文字を入れて流れを起こす
Original: file stream to put the wide character back to The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
[編集] 値を返します
成功
chに返されます.Original:
On success
ch is returned.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.
障害WEOFに返され、指定されたストリームは変更されません.
Original:
On failure WEOF is returned and the given stream remains unchanged.
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: puts a character back into a file stream The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (機能) | |
| ファイルストリームからワイド文字を取得します Original: gets a wide character from a file stream 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 ungetwc
| |