Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • libcfa/src/iostream.hfa

    r00e9be9 ref3ac46  
    1010// Created On       : Wed May 27 17:56:53 2015
    1111// Last Modified By : Peter A. Buhr
    12 // Last Modified On : Wed Apr 28 20:37:56 2021
    13 // Update Count     : 401
     12// Last Modified On : Tue Apr 27 17:59:21 2021
     13// Update Count     : 398
    1414//
    1515
     
    5252       
    5353trait ostream( ostype & | basic_ostream( ostype ) ) {
     54        int flush( ostype & );
    5455        bool fail( ostype & );                                                          // operation failed?
    55         void clear( ostype & );
    56         int flush( ostype & );
    5756        void open( ostype &, const char name[], const char mode[] );
    5857        void close( ostype & );
     
    303302        int fmt( istype &, const char format[], ... ) __attribute__(( format(scanf, 2, 3) ));
    304303        istype & ungetc( istype &, char );
    305         bool eof( istype & );
     304        int eof( istype & );
    306305}; // basic_istream
    307306
    308307trait istream( istype & | basic_istream( istype ) ) {
    309308        bool fail( istype & );
    310         void clear( istype & );
    311309        void open( istype & is, const char name[] );
    312310        void close( istype & is );
    313         istype & read( istype &, char [], size_t );
     311        istype & read( istype &, char *, size_t );
    314312        void acquire( istype & );                                                       // concurrent access
    315313}; // istream
Note: See TracChangeset for help on using the changeset viewer.