Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • libcfa/src/iostream.hfa

    r3c5dee4 r9d362a0  
    1010// Created On       : Wed May 27 17:56:53 2015
    1111// Last Modified By : Peter A. Buhr
    12 // Last Modified On : Sat May 11 10:31:27 2019
    13 // Update Count     : 232
     12// Last Modified On : Mon Dec 24 18:33:40 2018
     13// Update Count     : 220
    1414//
    1515
     
    4848        void close( ostype & os );
    4949        ostype & write( ostype &, const char *, size_t );
    50         int fmt( ostype &, const char format[], ... ) __attribute__(( format(printf, 2, 3) ));
     50        int fmt( ostype &, const char format[], ... );
    5151}; // ostream
    5252
     
    6262
    6363forall( dtype ostype | ostream( ostype ) ) {
    64         ostype & ?|?( ostype &, zero_t );
    65         void ?|?( ostype &, zero_t );
    66         ostype & ?|?( ostype &, one_t );
    67         void ?|?( ostype &, one_t );
    68 
    6964        ostype & ?|?( ostype &, bool );
    7065        void ?|?( ostype &, bool );
     
    149144
    150145trait istream( dtype istype ) {
    151         void nlOn( istype & );                                                          // read newline
    152         void nlOff( istype & );                                                         // scan newline
    153         bool getANL( istype & );                                                        // get scan newline (on/off)
    154146        int fail( istype & );
    155147        int eof( istype & );
     
    158150        istype & read( istype &, char *, size_t );
    159151        istype & ungetc( istype &, char );
    160         int fmt( istype &, const char format[], ... ) __attribute__(( format(scanf, 2, 3) ));
     152        int fmt( istype &, const char format[], ... );
    161153}; // istream
    162154
     
    192184        istype & ?|?( istype &, istype & (*)( istype & ) );
    193185        istype & nl( istype & is );
    194         istype & nlOn( istype & );
    195         istype & nlOff( istype & );
    196186} // distribution
    197187
     
    215205
    216206// Local Variables: //
     207// mode: c //
    217208// tab-width: 4 //
    218209// End: //
Note: See TracChangeset for help on using the changeset viewer.