From 7ef8a7379f7f7d09e71ccae2a0b688c3cd80423f Mon Sep 17 00:00:00 2001 From: Jakob Kaivo Date: Fri, 8 Feb 2019 18:42:39 -0500 Subject: merge sources into single tree --- src/stdio/FILE.c | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 src/stdio/FILE.c (limited to 'src/stdio/FILE.c') diff --git a/src/stdio/FILE.c b/src/stdio/FILE.c new file mode 100644 index 00000000..854bbcee --- /dev/null +++ b/src/stdio/FILE.c @@ -0,0 +1,15 @@ +#include +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) +*/ -- cgit v1.2.1