Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/libcfa/iostream

    r9ebd778 r829c907  
    1010// Created On       : Wed May 27 17:56:53 2015
    1111// Last Modified By : Peter A. Buhr
    12 // Last Modified On : Mon May 15 18:08:44 2017
    13 // Update Count     : 105
     12// Last Modified On : Tue Mar 21 15:57:29 2017
     13// Update Count     : 104
    1414//
    1515
     
    2020
    2121trait ostream( dtype ostype ) {
    22         // private
    2322        _Bool sepPrt( ostype * );                                                       // return separator state (on/off)
     23        void sepOn( ostype * );                                                         // turn separator state on
     24        void sepOff( ostype * );                                                        // turn separator state off
    2425        void sepReset( ostype * );                                                      // set separator state to default state
    2526        void sepReset( ostype *, _Bool );                                       // set separator and default state
    2627        const char * sepGetCur( ostype * );                                     // get current separator string
    2728        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 
    3429        const char * sepGet( ostype * );                                        // get separator string
    3530        void sepSet( ostype *, const char * );                          // set separator to string (15 character maximum)
    3631        const char * sepGetTuple( ostype * );                           // get tuple separator string
    3732        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 state
     34        _Bool sepEnable( ostype * );                                            // set default state to on, and return previous state
    3835
    3936        int fail( ostype * );
Note: See TracChangeset for help on using the changeset viewer.