Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • libcfa/src/fstream.hfa

    r58b6d1b r200fcb3  
    1010// Created On       : Wed May 27 17:56:53 2015
    1111// Last Modified By : Peter A. Buhr
    12 // Last Modified On : Tue Jun  5 10:20:25 2018
    13 // Update Count     : 131
     12// Last Modified On : Wed Dec 12 07:52:41 2018
     13// Update Count     : 143
    1414//
    1515
     
    2121struct ofstream {
    2222        void * file;
    23         _Bool sepDefault;
    24         _Bool sepOnOff;
    25         _Bool sawNL;
     23        bool sepDefault;
     24        bool sepOnOff;
     25        bool nlOnOff;
     26        bool nonlManip;
     27        bool sawNL;
    2628        const char * sepCur;
    2729        char separator[sepSize];
     
    3032
    3133// private
    32 _Bool sepPrt( ofstream & );
     34bool sepPrt( ofstream & );
    3335void sepReset( ofstream & );
    34 void sepReset( ofstream &, _Bool );
     36void sepReset( ofstream &, bool );
    3537const char * sepGetCur( ofstream & );
    3638void sepSetCur( ofstream &, const char * );
    37 _Bool getNL( ofstream & );
    38 void setNL( ofstream &, _Bool );
     39bool getNL( ofstream & );
     40void setNL( ofstream &, bool );
     41bool getANL( ofstream & );
     42bool getNonl( ofstream & );
     43void setNonl( ofstream &, bool );
    3944
    4045// public
    4146void sepOn( ofstream & );
    4247void sepOff( ofstream & );
    43 _Bool sepDisable( ofstream & );
    44 _Bool sepEnable( ofstream & );
     48bool sepDisable( ofstream & );
     49bool sepEnable( ofstream & );
     50void nlOn( ofstream & );
     51void nlOff( ofstream & );
    4552
    4653const char * sepGet( ofstream & );
Note: See TracChangeset for help on using the changeset viewer.