Go to the first, previous, next, last section, table of contents.


_fmode

Syntax

#include <fcntl.h>

extern int _fmode;

Description

This variable may be set to O_TEXT or O_BINARY to specify the mode that newly opened files should be opened in if the open call did not specify. See section open. See section fopen.

The default value is O_TEXT.

Portability

not ANSI, POSIX

Example

_fmode = O_BINARY;


Go to the first, previous, next, last section, table of contents.