std::fwide
来自cppreference.com
该页由英文版wiki使用Google Translate机器翻译而来。
该翻译可能存在错误或用词不当。鼠标停留在文本上可以看到原版本。你可以帮助我们修正错误或改进翻译。参见说明请点击这里. |
在头文件 <cwchar> 中定义
|
||
int fwide( FILE *stream, int mode ); |
||
如果
mode > 0
,试图使stream
宽。如果mode < 0
,试图使stream
面向字节的。如果mode==0,查询当前流的方向.....原文:
If
mode > 0
, attempts to make stream
wide-oriented. If mode < 0
, attempts to make stream
byte-oriented. If mode==0, only queries the current orientation of the stream.[编辑] 参数
stream | - | 指针C I / O流,修改或查询
原文: pointer to the C I/O stream to modify or query |
mode | - | 整数大于零的值来设置该流宽,小于零设置窄,或零仅查询流
原文: integer value greater than zero to set the stream wide, less than zero to set the stream narrow, or zero to query only |
[编辑] 返回值
在此调用后,如果流是面向广泛的大于零的整数,小于零的,如果流是面向字节在此调用后,和零流没有方向.....
原文:
An integer greater than zero if the stream is wide-oriented after this call, less than zero if the stream is byte-oriented after this call, and zero if the stream has no orientation.
[编辑] 另请参阅
打开一个文件 (函数) | |
C documentation for fwide
|