ADT
aaron-thesis
arm-eh
ast-experimental
cleanup-dtors
ctor
deferred_resn
demangler
enum
forall-pointer-decay
gc_noraii
jacob/cs343-translation
jenkins-sandbox
memory
new-ast
new-ast-unique-expr
new-env
no_list
persistent-indexer
pthread-emulation
qualifiedEnum
resolv-new
string
with_gc
|
Last change
on this file since c8ffe20b was 134b86a, checked in by Peter A. Buhr <pabuhr@…>, 11 years ago |
|
add compiler flag to driver, update examples, fix unnamed bit fields
|
-
Property mode
set to
100644
|
|
File size:
659 bytes
|
| Line | |
|---|
| 1 | #ifndef FSTREAM_H
|
|---|
| 2 | #define FSTREAM_H
|
|---|
| 3 |
|
|---|
| 4 | #include "iostream.h"
|
|---|
| 5 |
|
|---|
| 6 | typedef struct ofstream ofstream;
|
|---|
| 7 |
|
|---|
| 8 | // implement context ostream
|
|---|
| 9 | ofstream *write( ofstream *, const char *, streamsize_type );
|
|---|
| 10 | int fail( ofstream * );
|
|---|
| 11 |
|
|---|
| 12 | ofstream *ofstream_stdout();
|
|---|
| 13 | ofstream *ofstream_stderr();
|
|---|
| 14 | ofstream *ofstream_fromfile( const char *name );
|
|---|
| 15 | void ofstream_close( ofstream *os );
|
|---|
| 16 |
|
|---|
| 17 | typedef struct ifstream ifstream;
|
|---|
| 18 |
|
|---|
| 19 | // implement context istream
|
|---|
| 20 | ifstream *read( ifstream *, char *, streamsize_type );
|
|---|
| 21 | ifstream *unread( ifstream *, char );
|
|---|
| 22 | int fail( ifstream * );
|
|---|
| 23 | int eof( ifstream * );
|
|---|
| 24 |
|
|---|
| 25 | ifstream *ifstream_stdin();
|
|---|
| 26 | ifstream *ifstream_fromfile( const char *name );
|
|---|
| 27 |
|
|---|
| 28 | #endif // FSTREAM_H
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.