source: src/libcfa/fstream @ 5e1adb5

ADTaaron-thesisarm-ehast-experimentalcleanup-dtorsdeferred_resndemanglerenumforall-pointer-decayjacob/cs343-translationjenkins-sandboxnew-astnew-ast-unique-exprnew-envno_listpersistent-indexerpthread-emulationqualifiedEnumresolv-newwith_gc
Last change on this file since 5e1adb5 was 09687aa, checked in by Peter A. Buhr <pabuhr@…>, 6 years ago

complete conversion of iostream/fstream to use references

  • Property mode set to 100644
File size: 2.0 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 : Thu Dec  7 08:06:11 2017
13// Update Count     : 129
14//
15
16#pragma once
17
18#include "iostream"
19
20enum { sepSize = 16 };
21struct ofstream {
22        void * file;
23        _Bool sepDefault;
24        _Bool sepOnOff;
25        _Bool sawNL;
26        const char * sepCur;
27        char separator[sepSize];
28        char tupleSeparator[sepSize];
29}; // ofstream
30
31// private
32_Bool sepPrt( ofstream & );
33void sepReset( ofstream & );
34void sepReset( ofstream &, _Bool );
35const char * sepGetCur( ofstream & );
36void sepSetCur( ofstream &, const char * );
37_Bool getNL( ofstream & );
38void setNL( ofstream &, _Bool );
39
40// public
41void sepOn( ofstream & );
42void sepOff( ofstream & );
43_Bool sepDisable( ofstream & );
44_Bool sepEnable( ofstream & );
45
46const char * sepGet( ofstream & );
47void sepSet( ofstream &, const char * );
48const char * sepGetTuple( ofstream & );
49void sepSetTuple( ofstream &, const char * );
50
51int fail( ofstream & );
52int flush( ofstream & );
53void open( ofstream &, const char * name, const char * mode );
54void close( ofstream & );
55ofstream & write( ofstream &, const char * data, unsigned long int size );
56int fmt( ofstream &, const char fmt[], ... );
57
58void ?{}( ofstream & os );
59void ?{}( ofstream & os, const char * name, const char * mode );
60
61extern ofstream & sout, & serr;
62
63
64struct ifstream {
65        void * file;
66}; // ifstream
67
68// public
69int fail( ifstream & is );
70int eof( ifstream & is );
71void open( ifstream & is, const char * name );
72void close( ifstream & is );
73ifstream & read( ifstream & is, char * data, unsigned long int size );
74ifstream & ungetc( ifstream & is, char c );
75int fmt( ifstream &, const char fmt[], ... );
76
77void ?{}( ifstream & is );
78void ?{}( ifstream & is, const char * name );
79
80extern ifstream & sin;
81
82// Local Variables: //
83// mode: c //
84// tab-width: 4 //
85// End: //
Note: See TracBrowser for help on using the repository browser.