summaryrefslogtreecommitdiff
path: root/src/stdio/FILE.h
blob: d3a29447220514fab0defcce936938632e67be37 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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)
*/