std::ungetc
Aus cppreference.com
<metanoindex/>
<tbody> </tbody>| definiert in Header <cstdio>
|
||
int ungetc( int ch, FILE *stream ); |
||
Versetzt den Charakter
ch zurück in die angegebene Datei Stream . Original:
Puts the 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.
Parameter
| ch | - | Charakter zurück gebracht werden
Original: 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 | - | Datei-Stream, um das Zeichen wieder an die
Original: file stream to put the 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. |
Rückgabewert
Bei Erfolg
ch zurückgegeben .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.
Bei Ausfall EOF zurückgegeben wird und die angegebenen Stream bleibt unverändert .
Original:
On failure EOF 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.
