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 Mar 21 15:57:24 2017
|
---|
13 | // Update Count : 102
|
---|
14 | //
|
---|
15 |
|
---|
16 | #ifndef __FSTREAM_H__
|
---|
17 | #define __FSTREAM_H__
|
---|
18 |
|
---|
19 | #include "iostream"
|
---|
20 |
|
---|
21 | enum { separateSize = 16 };
|
---|
22 | struct ofstream {
|
---|
23 | void * file;
|
---|
24 | _Bool sepDefault;
|
---|
25 | _Bool sepOnOff;
|
---|
26 | const char * sepCur;
|
---|
27 | char separator[separateSize];
|
---|
28 | char tupleSeparator[separateSize];
|
---|
29 | }; // ofstream
|
---|
30 |
|
---|
31 | _Bool sepPrt( ofstream * );
|
---|
32 | void sepOn( ofstream * );
|
---|
33 | void sepOff( ofstream * );
|
---|
34 | void sepReset( ofstream * );
|
---|
35 | void sepReset( ofstream *, _Bool );
|
---|
36 | const char * sepGetCur( ofstream * );
|
---|
37 | void sepSetCur( ofstream *, const char * );
|
---|
38 | const char * sepGet( ofstream * );
|
---|
39 | void sepSet( ofstream *, const char * );
|
---|
40 | const char * sepGetTuple( ofstream * );
|
---|
41 | void sepSetTuple( ofstream *, const char * );
|
---|
42 | _Bool sepDisable( ofstream * );
|
---|
43 | _Bool sepEnable( ofstream * );
|
---|
44 |
|
---|
45 | int fail( ofstream * );
|
---|
46 | int flush( ofstream * );
|
---|
47 | void open( ofstream *, const char * name, const char * mode );
|
---|
48 | void close( ofstream * );
|
---|
49 | ofstream * write( ofstream *, const char * data, unsigned long int size );
|
---|
50 | int fmt( ofstream *, const char fmt[], ... );
|
---|
51 |
|
---|
52 | void ?{}( ofstream * );
|
---|
53 |
|
---|
54 | extern ofstream * sout, * serr;
|
---|
55 |
|
---|
56 | // implement context istream
|
---|
57 | struct ifstream {
|
---|
58 | void * file;
|
---|
59 | }; // ifstream
|
---|
60 |
|
---|
61 | int fail( ifstream * is );
|
---|
62 | int eof( ifstream * is );
|
---|
63 | void open( ifstream * is, const char * name, const char * mode );
|
---|
64 | void close( ifstream * is );
|
---|
65 | ifstream * read( ifstream * is, char * data, unsigned long int size );
|
---|
66 | ifstream * ungetc( ifstream * is, char c );
|
---|
67 | int fmt( ifstream *, const char fmt[], ... );
|
---|
68 |
|
---|
69 | extern ifstream * sin;
|
---|
70 |
|
---|
71 | #endif // __FSTREAM_H__
|
---|
72 |
|
---|
73 | // Local Variables: //
|
---|
74 | // mode: c //
|
---|
75 | // tab-width: 4 //
|
---|
76 | // End: //
|
---|