source: src/libcfa/fstream @ 658f6de0

ADTaaron-thesisarm-ehast-experimentalcleanup-dtorsctordeferred_resndemanglerenumforall-pointer-decaygc_noraiijacob/cs343-translationjenkins-sandboxmemorynew-astnew-ast-unique-exprnew-envno_listpersistent-indexerpthread-emulationqualifiedEnumresolv-newstringwith_gc
Last change on this file since 658f6de0 was 6ba0659, checked in by Peter A. Buhr <pabuhr@…>, 8 years ago

major rewrite of I/O library and update example programs to use new I/O

  • Property mode set to 100644
File size: 1.2 KB
RevLine 
[86bd7c1f]1//
2// Cforall Version 1.0.0 Copyright (C) 2015 University of Waterloo
3//
4// The contents of this file are covered under the licence agreement in the
5// file "LICENCE" distributed with Cforall.
6//
[d3b7937]7// fstream --
[86bd7c1f]8//
9// Author           : Richard C. Bilson
10// Created On       : Wed May 27 17:56:53 2015
11// Last Modified By : Peter A. Buhr
[6ba0659]12// Last Modified On : Wed Feb 17 14:02:01 2016
13// Update Count     : 22
[86bd7c1f]14//
15
[42dcae7]16#ifndef __FSTREAM_H__
17#define __FSTREAM_H__
[51b7345]18
[d3b7937]19#include "iostream"
[51b7345]20
[134b86a]21// implement context ostream
[6ba0659]22struct ofstream;
[51b7345]23
[6ba0659]24int fail( ofstream * os );
25int flush( ofstream * os );
26void open( ofstream ** os, const char * name, const char * mode );
27void close( ofstream * os );
28ofstream * write( ofstream * os, const char * data, streamsize_type size );
[51b7345]29
[6ba0659]30extern ofstream * sout, * serr;
[51b7345]31
[134b86a]32// implement context istream
[6ba0659]33struct ifstream;
34
35int fail( ifstream * is );
36int eof( ifstream * is );
37void open( ifstream ** is, const char * name, const char * mode );
38void close( ifstream * is );
39ifstream * get( ifstream * is, int * data );
40ifstream * read( ifstream * is, char * data, streamsize_type size );
41ifstream * ungetc( ifstream * is, char c );
[51b7345]42
[6ba0659]43extern ifstream *sin;
[51b7345]44
[42dcae7]45#endif // __FSTREAM_H__
[86bd7c1f]46
47// Local Variables: //
[d3b7937]48// mode: c //
[86bd7c1f]49// tab-width: 4 //
50// End: //
Note: See TracBrowser for help on using the repository browser.