fgetwc
来自cppreference.com
该页由英文版wiki使用Google Translate机器翻译而来。
该翻译可能存在错误或用词不当。鼠标停留在文本上可以看到原版本。你可以帮助我们修正错误或改进翻译。参见说明请点击这里. |
在头文件 <wchar.h> 中定义
|
||
从给定的输入流读取下一个宽字符。 getwc()可以被实现为一个宏,并可能评估
stream
不止一次.原文:
Reads the next wide character from the given input stream. getwc() may be implemented as a macro and may evaluate
stream
more than once.[编辑] 参数
stream | - | 读的宽字符
|
[编辑] 返回值
下一个宽字符流或WEOF如果发生了错误或结尾的文件已经达到了。如果编码错误的发生,errno设置为
EILSEQ
.原文:
next wide character from the stream or WEOF if an error has occurred or the end of file has been reached. If an encoding error occurred, errno is set to
EILSEQ
.[编辑] 另请参阅
从文件流中获取一个字符 (函数) | |
获取宽字符串从文件流 原文: gets a wide string from a file stream (函数) | |
一个宽字符写入一个文件流 原文: writes a wide character to a file stream (函数) | |
把一个宽字符到一个文件流 原文: puts a wide character back into a file stream (函数) | |
C++ documentation for fgetwc
|