std::rewind
De 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. |
<metanoindex/>
<tbody> </tbody>| Definido no cabeçalho <cstdio>
|
||
void rewind( std::FILE* stream ); |
||
Move o indicador de posição do arquivo para o início do fluxo de determinado arquivo, como se por
std::fseek(stream, 0L, SEEK_SET) e limpa o fim-de-arquivo e os indicadores de erro em stream.Original:
Moves the file position indicator to the beginning of the given file stream as if by
std::fseek(stream, 0L, SEEK_SET), and clears the end-of-file and the error indicators on 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.
Parâmetros
| stream | - | arquivo de fluxo de modificar
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. |
Valor de retorno
(Nenhum)
Original:
(none)
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.
Exemplo
| Esta seção está incompleta Motivo: sem exemplo |
Veja também
move o indicador de posição de arquivo para um local específico em um arquivo 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. (função) | |
Documentação C para rewind
| |