Ignore:
Timestamp:
Oct 19, 2023, 3:26:36 PM (2 years ago)
Author:
caparsons <caparson@…>
Branches:
master
Children:
0803ead, 1b0184b
Parents:
cbbfba9 (diff), e0dc038 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
Message:

Merge branch 'master' of plg.uwaterloo.ca:software/cfa/cfa-cc

File:
1 edited

Legend:

Unmodified
Added
Removed
  • libcfa/src/fstream.hfa

    rcbbfba9 r2d7cb19  
    1010// Created On       : Wed May 27 17:56:53 2015
    1111// Last Modified By : Peter A. Buhr
    12 // Last Modified On : Fri Aug 18 10:41:15 2023
    13 // Update Count     : 258
     12// Last Modified On : Fri Oct 13 13:55:21 2023
     13// Update Count     : 260
    1414//
    1515
     
    119119void ends( ifstream & );
    120120int fmt( ifstream &, const char format[], ... ) __attribute__(( format(scanf, 2, 3) ));
     121ifstream & ungetc( ifstream & is, char c );
     122bool eof( ifstream & is );
    121123
    122124bool fail( ifstream & is );
    123125void clear( ifstream & );
    124 bool eof( ifstream & is );
    125126void open( ifstream & is, const char name[], const char mode[] ); // FIX ME: use default = "r"
    126127void open( ifstream & is, const char name[] );
    127128void close( ifstream & is );
    128 
    129129ifstream & read( ifstream & is, char data[], size_t size );
    130 ifstream & ungetc( ifstream & is, char c );
    131130
    132131void ?{}( ifstream & is );
Note: See TracChangeset for help on using the changeset viewer.