std::fputwc

< cpp‎ | io‎ | c
 
 
 
 
定义于头文件 <cwchar>
wint_t fputwc( wchar_t ch, std::FILE* stream );
wint_t putwc( wchar_t ch, std::FILE* stream );

写入宽字符 ch 到给定的输出流 streamputwc() 可实现为宏并可能求值 stream 多于一次。

参数

ch - 要写入的宽字符
stream - 输出流

返回值

成功时为 ch ,失败时为 WEOF 。若出现编码错误,则设置 errnoEILSEQ

参阅

写字符到文件流
(函数)
写宽字符串到文件流
(函数)
从文件流获取宽字符
(函数)