std::ungetc
来自cppreference.com
该页由英文版wiki使用Google Translate机器翻译而来。
该翻译可能存在错误或用词不当。鼠标停留在文本上可以看到原版本。你可以帮助我们修正错误或改进翻译。参见说明请点击这里. |
在头文件 <cstdio> 中定义
|
||
int ungetc( int ch, FILE *stream ); |
||
看跌期权的字符
ch
给定的文件流. 原文:
Puts the character
ch
back to the given file stream. [编辑] 参数
ch | - | 字符被放回来了
|
stream | - | 文件流把字符
原文: file stream to put the character back to |
[编辑] 返回值
成功则返回
ch
.在失败EOF返回给定的流保持不变.
原文:
On failure EOF is returned and the given stream remains unchanged.
[编辑] 另请参阅
从文件流中获取一个字符 (函数) | |
C documentation for ungetc
|