Programming Reference/Librarys
Question & Answer
Q&A is closed
#include <wchar.h> int fwide(FILE *stream, int mode);
fwide shall determine the orientation of the stream pointed to by stream.
greater than 0 if, after the call, the stream has wide-orientation
less than 0 if the stream has byte-orientation
0 if the stream has no orientation.
no example yet