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 15:17:26 2017
|
---|
13 | // Update Count : 130
|
---|
14 | //
|
---|
15 |
|
---|
16 | #pragma once
|
---|
17 |
|
---|
18 | #include "iostream"
|
---|
19 |
|
---|
20 | enum { sepSize = 16 };
|
---|
21 | struct 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 & );
|
---|
33 | void sepReset( ofstream & );
|
---|
34 | void sepReset( ofstream &, _Bool );
|
---|
35 | const char * sepGetCur( ofstream & );
|
---|
36 | void sepSetCur( ofstream &, const char * );
|
---|
37 | _Bool getNL( ofstream & );
|
---|
38 | void setNL( ofstream &, _Bool );
|
---|
39 |
|
---|
40 | // public
|
---|
41 | void sepOn( ofstream & );
|
---|
42 | void sepOff( ofstream & );
|
---|
43 | _Bool sepDisable( ofstream & );
|
---|
44 | _Bool sepEnable( ofstream & );
|
---|
45 |
|
---|
46 | const char * sepGet( ofstream & );
|
---|
47 | void sepSet( ofstream &, const char * );
|
---|
48 | const char * sepGetTuple( ofstream & );
|
---|
49 | void sepSetTuple( ofstream &, const char * );
|
---|
50 |
|
---|
51 | int fail( ofstream & );
|
---|
52 | int flush( ofstream & );
|
---|
53 | void open( ofstream &, const char * name, const char * mode );
|
---|
54 | void open( ofstream &, const char * name );
|
---|
55 | void close( ofstream & );
|
---|
56 | ofstream & write( ofstream &, const char * data, unsigned long int size );
|
---|
57 | int fmt( ofstream &, const char fmt[], ... );
|
---|
58 |
|
---|
59 | void ?{}( ofstream & os );
|
---|
60 | void ?{}( ofstream & os, const char * name, const char * mode );
|
---|
61 | void ?{}( ofstream & os, const char * name );
|
---|
62 |
|
---|
63 | extern ofstream & sout, & serr;
|
---|
64 |
|
---|
65 |
|
---|
66 | struct ifstream {
|
---|
67 | void * file;
|
---|
68 | }; // ifstream
|
---|
69 |
|
---|
70 | // public
|
---|
71 | int fail( ifstream & is );
|
---|
72 | int eof( ifstream & is );
|
---|
73 | void open( ifstream & is, const char * name, const char * mode );
|
---|
74 | void open( ifstream & is, const char * name );
|
---|
75 | void close( ifstream & is );
|
---|
76 | ifstream & read( ifstream & is, char * data, unsigned long int size );
|
---|
77 | ifstream & ungetc( ifstream & is, char c );
|
---|
78 | int fmt( ifstream &, const char fmt[], ... );
|
---|
79 |
|
---|
80 | void ?{}( ifstream & is );
|
---|
81 | void ?{}( ifstream & is, const char * name, const char * mode );
|
---|
82 | void ?{}( ifstream & is, const char * name );
|
---|
83 |
|
---|
84 | extern ifstream & sin;
|
---|
85 |
|
---|
86 | // Local Variables: //
|
---|
87 | // mode: c //
|
---|
88 | // tab-width: 4 //
|
---|
89 | // End: //
|
---|