Ignore:
Timestamp:
Oct 17, 2023, 9:32:34 PM (9 months ago)
Author:
Peter A. Buhr <pabuhr@…>
Branches:
master
Children:
2d7cb19, f842032
Parents:
ca995e3
Message:

first attempt at new C string input

File:
1 edited

Legend:

Unmodified
Added
Removed
  • libcfa/src/iostream.hfa

    rca995e3 re0dc038  
    1010// Created On       : Wed May 27 17:56:53 2015
    1111// Last Modified By : Peter A. Buhr
    12 // Last Modified On : Sun Oct  8 12:02:55 2023
    13 // Update Count     : 568
     12// Last Modified On : Mon Oct 16 21:12:01 2023
     13// Update Count     : 573
    1414//
    1515
     
    324324        istype & ungetc( istype &, char );
    325325        bool eof( istype & );
     326        void clear( istype & );
    326327}; // basic_istream
    327328
     
    329330trait istream {
    330331        bool fail( istype & );
    331         void clear( istype & );
     332        void open( istype & is, const char name[], const char mode[] );
    332333        void open( istype & is, const char name[] );
    333334        void close( istype & is );
     
    402403
    403404ExceptionDecl( cstring_length );
     405ExceptionDecl( missing_data );
    404406
    405407// *********************************** manipulators ***********************************
    406408
     409// skip does not compose with other C string manipulators.
    407410struct _Istream_Cskip {
    408411        const char * scanset;
Note: See TracChangeset for help on using the changeset viewer.