source: src/libcfa/fstream @ 6b6597c

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 6b6597c was 6b6597c, checked in by Peter A. Buhr <pabuhr@…>, 8 years ago

user manual updates, extend I/O test, fix memset in stdlib, workaround for fstream

  • Property mode set to 100644
File size: 1.7 KB
Line 
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//
7// fstream --
8//
9// Author           : Peter A. Buhr
10// Created On       : Wed May 27 17:56:53 2015
11// Last Modified By : Peter A. Buhr
12// Last Modified On : Tue Apr 19 20:44:10 2016
13// Update Count     : 84
14//
15
16#ifndef __FSTREAM_H__
17#define __FSTREAM_H__
18
19#include "iostream"
20
21enum { separateSize = 16 };
22struct ofstream {
23        void *file;
24        int sepDefault;
25        int sepOnOff;
26        char separator[separateSize];
27}; // ofstream
28
29_Bool sepPrt( ofstream * );
30void sepOn( ofstream * );
31void sepOff( ofstream * );
32void sepReset( ofstream * );
33void sepReset( ofstream *, _Bool );
34void sepSet( ofstream *, const char * );
35const char * sepGet( ofstream * );
36_Bool sepDisable( ofstream * );
37_Bool sepEnable( ofstream * );
38int fail( ofstream * );
39int flush( ofstream * );
40void open( ofstream *, const char * name, const char * mode );
41void close( ofstream * );
42ofstream * write( ofstream *, const char * data, unsigned long int size );
43int prtfmt( ofstream *, const char fmt[], ... );
44
45extern ofstream * sout, * serr;
46
47// implement context istream
48struct ifstream {
49        void *file;
50}; // ifstream
51
52int fail( ifstream * is );
53int eof( ifstream * is );
54void open( ifstream * is, const char * name, const char * mode );
55void close( ifstream * is );
56ifstream * read( ifstream * is, char * data, unsigned long int size );
57ifstream * ungetc( ifstream * is, char c );
58int scanfmt( ifstream *, const char fmt[], ... );
59
60extern ifstream *sin;
61
62#endif // __FSTREAM_H__
63
64// Local Variables: //
65// mode: c //
66// tab-width: 4 //
67// End: //
68
Note: See TracBrowser for help on using the repository browser.