diff options
Diffstat (limited to 'src/stdio/FILE.h')
-rw-r--r-- | src/stdio/FILE.h | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/src/stdio/FILE.h b/src/stdio/FILE.h new file mode 100644 index 00000000..d3a29447 --- /dev/null +++ b/src/stdio/FILE.h @@ -0,0 +1,16 @@ +typedef struct __FILE + FILE; + +/** buffered I/O stream **/ + +/*** +is used to hold information about buffered input and output streams. The +structure holds information including the current file position indicator, +a pointer to its buffer, an error indicator, and an end-of-file indicator. +No standard defines the members of THIS(). User programs should not attempt +to access or modify its members directly. +***/ + +/* +STDC(1) +*/ |