source: src/examples/fstream.h@ 2bae7307

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 2bae7307 was 843054c2, checked in by Peter A. Buhr <pabuhr@…>, 10 years ago

licencing: seventh groups of files

  • Property mode set to 100644
File size: 671 bytes
Line 
1#ifndef __FSTREAM_H__
2#define __FSTREAM_H__
3
4#include "iostream.h"
5
6typedef struct ofstream ofstream;
7
8// implement context ostream
9ofstream *write( ofstream *, const char *, streamsize_type );
10int fail( ofstream * );
11
12ofstream *ofstream_stdout();
13ofstream *ofstream_stderr();
14ofstream *ofstream_fromfile( const char *name );
15void ofstream_close( ofstream *os );
16
17typedef struct ifstream ifstream;
18
19// implement context istream
20ifstream *read( ifstream *, char *, streamsize_type );
21ifstream *unread( ifstream *, char );
22int fail( ifstream * );
23int eof( ifstream * );
24
25ifstream *ifstream_stdin();
26ifstream *ifstream_fromfile( const char *name );
27
28#endif // __FSTREAM_H__
Note: See TracBrowser for help on using the repository browser.