Changeset 9ebd778 for src/libcfa/iostream
- Timestamp:
- May 15, 2017, 6:43:54 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:
- 6c6455f
- Parents:
- 3dafd83
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified src/libcfa/iostream ¶
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:29201713 // Update Count : 10 412 // Last Modified On : Mon May 15 18:08:44 2017 13 // Update Count : 105 14 14 // 15 15 … … 20 20 21 21 trait ostream( dtype ostype ) { 22 // private 22 23 _Bool sepPrt( ostype * ); // return separator state (on/off) 23 void sepOn( ostype * ); // turn separator state on24 void sepOff( ostype * ); // turn separator state off25 24 void sepReset( ostype * ); // set separator state to default state 26 25 void sepReset( ostype *, _Bool ); // set separator and default state 27 26 const char * sepGetCur( ostype * ); // get current separator string 28 27 void sepSetCur( ostype *, const char * ); // set current separator string 28 // public 29 void sepOn( ostype * ); // turn separator state on 30 void sepOff( ostype * ); // turn separator state off 31 _Bool sepDisable( ostype * ); // set default state to off, and return previous state 32 _Bool sepEnable( ostype * ); // set default state to on, and return previous state 33 29 34 const char * sepGet( ostype * ); // get separator string 30 35 void sepSet( ostype *, const char * ); // set separator to string (15 character maximum) 31 36 const char * sepGetTuple( ostype * ); // get tuple separator string 32 37 void sepSetTuple( ostype *, const char * ); // set tuple separator to string (15 character maximum) 33 _Bool sepDisable( ostype * ); // set default state to off, and return previous state34 _Bool sepEnable( ostype * ); // set default state to on, and return previous state35 38 36 39 int fail( ostype * );
Note: See TracChangeset
for help on using the changeset viewer.