Changeset 8ef9c5e7 for src/libcfa/fstream
- Timestamp:
- Mar 13, 2017, 2:14:50 PM (8 years ago)
- Branches:
- ADT, aaron-thesis, arm-eh, ast-experimental, cleanup-dtors, deferred_resn, demangler, enum, forall-pointer-decay, jacob/cs343-translation, jenkins-sandbox, master, new-ast, new-ast-unique-expr, new-env, no_list, persistent-indexer, pthread-emulation, qualifiedEnum, resolv-new, with_gc
- Children:
- 17df48e
- Parents:
- 031a2c95 (diff), 68ac32e (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified src/libcfa/fstream ¶
r031a2c95 r8ef9c5e7 10 10 // Created On : Wed May 27 17:56:53 2015 11 11 // Last Modified By : Peter A. Buhr 12 // Last Modified On : T hu Apr 28 08:08:04 201613 // Update Count : 8812 // Last Modified On : Tue Mar 7 14:48:08 2017 13 // Update Count : 91 14 14 // 15 15 … … 23 23 void *file; 24 24 _Bool sepDefault; 25 int sepOnOff; // FIX ME: type should be _Bool25 _Bool sepOnOff; 26 26 char separator[separateSize]; 27 27 }; // ofstream … … 32 32 void sepReset( ofstream * ); 33 33 void sepReset( ofstream *, _Bool ); 34 const char * sepGet( ofstream * ); 34 35 void sepSet( ofstream *, const char * ); 35 const char * sepGet( ofstream * );36 36 _Bool sepDisable( ofstream * ); 37 37 _Bool sepEnable( ofstream * ); 38 38 39 int fail( ofstream * ); 39 40 int flush( ofstream * );
Note: See TracChangeset
for help on using the changeset viewer.