source: src/libcfa/fstream @ b510ac2

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 b510ac2 was 829c907, checked in by Peter A. Buhr <pabuhr@…>, 7 years ago

add tuple separator to sout

  • Property mode set to 100644
File size: 1.9 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//
[bb82c03]7// fstream --
[86bd7c1f]8//
[90c3b1c]9// Author           : Peter A. Buhr
[86bd7c1f]10// Created On       : Wed May 27 17:56:53 2015
11// Last Modified By : Peter A. Buhr
[829c907]12// Last Modified On : Tue Mar 21 15:57:24 2017
13// Update Count     : 102
[86bd7c1f]14//
15
[42dcae7]16#ifndef __FSTREAM_H__
17#define __FSTREAM_H__
[51b7345]18
[d3b7937]19#include "iostream"
[51b7345]20
[90c3b1c]21enum { separateSize = 16 };
[53ba273]22struct ofstream {
[829c907]23        void * file;
[8bc4ef8]24        _Bool sepDefault;
[6152c81]25        _Bool sepOnOff;
[829c907]26        const char * sepCur;
[53ba273]27        char separator[separateSize];
[829c907]28        char tupleSeparator[separateSize];
[53ba273]29}; // ofstream
[90c3b1c]30
31_Bool sepPrt( ofstream * );
32void sepOn( ofstream * );
33void sepOff( ofstream * );
[53ba273]34void sepReset( ofstream * );
35void sepReset( ofstream *, _Bool );
[829c907]36const char * sepGetCur( ofstream * );
37void sepSetCur( ofstream *, const char * );
[90c3b1c]38const char * sepGet( ofstream * );
[6152c81]39void sepSet( ofstream *, const char * );
[829c907]40const char * sepGetTuple( ofstream * );
41void sepSetTuple( ofstream *, const char * );
[53ba273]42_Bool sepDisable( ofstream * );
43_Bool sepEnable( ofstream * );
[6152c81]44
[90c3b1c]45int fail( ofstream * );
46int flush( ofstream * );
47void open( ofstream *, const char * name, const char * mode );
48void close( ofstream * );
49ofstream * write( ofstream *, const char * data, unsigned long int size );
[829c907]50int fmt( ofstream *, const char fmt[], ... );
51
52void ?{}( ofstream * );
[51b7345]53
[6ba0659]54extern ofstream * sout, * serr;
[51b7345]55
[134b86a]56// implement context istream
[53ba273]57struct ifstream {
[829c907]58        void * file;
[53ba273]59}; // ifstream
[6ba0659]60
61int fail( ifstream * is );
62int eof( ifstream * is );
[90c3b1c]63void open( ifstream * is, const char * name, const char * mode );
[6ba0659]64void close( ifstream * is );
[90c3b1c]65ifstream * read( ifstream * is, char * data, unsigned long int size );
[6ba0659]66ifstream * ungetc( ifstream * is, char c );
[829c907]67int fmt( ifstream *, const char fmt[], ... );
[51b7345]68
[829c907]69extern ifstream * sin;
[51b7345]70
[42dcae7]71#endif // __FSTREAM_H__
[86bd7c1f]72
73// Local Variables: //
[d3b7937]74// mode: c //
[86bd7c1f]75// tab-width: 4 //
76// End: //
Note: See TracBrowser for help on using the repository browser.