std::rewind
来自cppreference.com
该页由英文版wiki使用Google Translate机器翻译而来。
该翻译可能存在错误或用词不当。鼠标停留在文本上可以看到原版本。你可以帮助我们修正错误或改进翻译。参见说明请点击这里. |
在头文件 <cstdio> 中定义
|
||
void rewind( std::FILE* stream ); |
||
如果由std::fseek(stream, 0L, SEEK_SET)的文件位置指示器移动到指定的文件流的开头,清除最终文件和错误指示灯上
stream
.原文:
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
.目录 |
[编辑] 参数
stream | - | 文件流来修改
|
[编辑] 返回值
(无)
[编辑] 示例
本章尚未完成 原因:暂无示例 |
[编辑] 另请参阅
在一个文件中的文件位置指示符移动到特定的位置 原文: moves the file position indicator to a specific location in a file (函数) | |
C documentation for rewind
|