Changeset 9ebd778 for src/libcfa/fstream
- Timestamp:
- May 15, 2017, 6:43:54 PM (7 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:
- 6c6455f
- Parents:
- 3dafd83
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/libcfa/fstream
r3dafd83 r9ebd778 10 10 // Created On : Wed May 27 17:56:53 2015 11 11 // Last Modified By : Peter A. Buhr 12 // Last Modified On : Tue Mar 21 15:57:24201713 // Update Count : 10 212 // Last Modified On : Mon May 15 18:11:09 2017 13 // Update Count : 104 14 14 // 15 15 … … 29 29 }; // ofstream 30 30 31 // private 31 32 _Bool sepPrt( ofstream * ); 32 void sepOn( ofstream * );33 void sepOff( ofstream * );34 33 void sepReset( ofstream * ); 35 34 void sepReset( ofstream *, _Bool ); 36 35 const char * sepGetCur( ofstream * ); 37 36 void sepSetCur( ofstream *, const char * ); 37 38 // public 39 void sepOn( ofstream * ); 40 void sepOff( ofstream * ); 41 _Bool sepDisable( ofstream * ); 42 _Bool sepEnable( ofstream * ); 43 38 44 const char * sepGet( ofstream * ); 39 45 void sepSet( ofstream *, const char * ); 40 46 const char * sepGetTuple( ofstream * ); 41 47 void sepSetTuple( ofstream *, const char * ); 42 _Bool sepDisable( ofstream * );43 _Bool sepEnable( ofstream * );44 48 45 49 int fail( ofstream * );
Note: See TracChangeset
for help on using the changeset viewer.