fwgets
来自cppreference.com
该页由英文版wiki使用Google Translate机器翻译而来。
该翻译可能存在错误或用词不当。鼠标停留在文本上可以看到原版本。你可以帮助我们修正错误或改进翻译。参见说明请点击这里. |
在头文件 <wchar.h> 中定义
|
||
wchar_t *fgetws( wchar_t *str, int count, FILE *stream ); |
||
读取至多count - 1宽字符从给定的文件流,并把它们存储在
str
。宽字符串始终是NULL终止。停止解析,如果出现文件结束或一个新行的宽字符,在这种情况下,str
将包含该宽的换行符.原文:
Reads at most count - 1 wide characters from the given file stream and stores them in
str
. The produced wide string is always NULL-terminated. Parsing stops if end-of-file occurs or a newline wide character is found, in which case str
will contain that wide newline character.[编辑] 参数
str | - | 宽字符串读取的字符
原文: wide string to read the characters to |
count | - | str 的长度 |
stream | - | 文件流中读取的数据
|
[编辑] 返回值
str
成功,NULL错误[编辑] 另请参阅
stdin,文件流或缓冲区读取格式的宽字符输入 原文: reads formatted wide character input from stdin, a file stream or a buffer (函数) | |
得到一个宽字符的文件流 原文: gets a wide character from a file stream (函数) | |
宽字符串写入一个文件流 原文: writes a wide string to a file stream (函数) | |
C++ documentation for fgetws
|