Namespaces
Variants
Views
Actions

std::fwide

From cppreference.com
< cpp‎ | io‎ | c
Revision as of 13:06, 12 February 2014 by Edmundv (Talk | contribs)

 
 
 
C-style I/O
Types and objects
Functions
File access
fwide

Direct input/output
Unformatted input/output
Formatted input
(C++11)(C++11)(C++11)    
(C++11)(C++11)(C++11)    
 
Defined in header <cwchar>
int fwide( std::FILE* stream, int mode );

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.

Parameters

stream - 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

Return value

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.

See also

opens a file
(function) [edit]
C documentation for fwide