Changes in src/libcfa/fstream [6152c81:bb82c03]
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/libcfa/fstream
r6152c81 rbb82c03 10 10 // Created On : Wed May 27 17:56:53 2015 11 11 // Last Modified By : Peter A. Buhr 12 // Last Modified On : T ue Mar 7 14:48:08 201713 // Update Count : 9112 // Last Modified On : Thu Apr 28 08:08:04 2016 13 // Update Count : 88 14 14 // 15 15 … … 23 23 void *file; 24 24 _Bool sepDefault; 25 _Bool sepOnOff;25 int sepOnOff; // FIX ME: type should be _Bool 26 26 char separator[separateSize]; 27 27 }; // ofstream … … 32 32 void sepReset( ofstream * ); 33 33 void sepReset( ofstream *, _Bool ); 34 void sepSet( ofstream *, const char * ); 34 35 const char * sepGet( ofstream * ); 35 void sepSet( ofstream *, const char * );36 36 _Bool sepDisable( ofstream * ); 37 37 _Bool sepEnable( ofstream * ); 38 39 38 int fail( ofstream * ); 40 39 int flush( ofstream * );
Note:
See TracChangeset
for help on using the changeset viewer.