The fwide() function determines the orientation of the stream pointed to by stream. If mode is greater than 0, the function first attempts
to make the stream wide-orientated. If mode is less than 0, the function first attempts to make the stream byte-orientated. Otherwise, mode is 0 and the function
does not alter the orientation of the stream.
If the orientation of the stream has already been determined, fwide() does not change it.
Because no return value is reserved to indicate an error, an application wishing to check for error situations should set errno to 0, then call fwide(), then
check errno and if it is non-zero, assume an error has occurred.
|