std::fputws
来自cppreference.com
该页由英文版wiki使用Google Translate机器翻译而来。
该翻译可能存在错误或用词不当。鼠标停留在文本上可以看到原版本。你可以帮助我们修正错误或改进翻译。参见说明请点击这里. |
在头文件 <cwchar> 中定义
|
||
int fputws( const wchar_t *str, FILE *stream ); |
||
写入null结尾的宽字符串给定的输出流.
原文:
Writes given null-terminated wide string to the given output stream.
[编辑] 参数
str | - | 空结尾的宽字符串被写入
原文: null-terminated wide string to be written |
stream | - | 输出流
|
[编辑] 返回值
非负整数上成功,WEOF失败
原文:
Non-negative integer on success, WEOF on failure
[编辑] 另请参阅
将一个字符串写入一个文件流 原文: writes a character string to a file stream (函数) | |
打印格式化宽字符输出到stdout,文件流或缓冲区 原文: prints formatted wide character output to stdout, a file stream or a buffer (函数) | |
fputws |
宽字符串写入一个文件流 原文: writes a wide string to a file stream (函数) |
获取宽字符串从文件流 原文: gets a wide string from a file stream (函数) | |
C documentation for fputws
|