clearerr
来自cppreference.com
该页由英文版wiki使用Google Translate机器翻译而来。
该翻译可能存在错误或用词不当。鼠标停留在文本上可以看到原版本。你可以帮助我们修正错误或改进翻译。参见说明请点击这里. |
在头文件 <stdio.h> 中定义
|
||
void clearerr( FILE *stream ); |
||
复位错误标志,并
EOF
指标给定的文件流.原文:
Resets the error flags and the
EOF
indicator for the given file stream.目录 |
[编辑] 参数
stream | - | 文件以重置错误标志
原文: the file to reset the error flags for |
[编辑] 返回值
(无)
[编辑] 示例
本章尚未完成 原因:暂无示例 |
[编辑] 另请参阅
检查文件结束 (函数) | |
显示一个字符串相应的电流误差stderr 原文: displays a character string corresponding of the current error to stderr (函数) | |
检查文件错误 (函数) | |
C++ documentation for clearerr
|