Ignore:
Timestamp:
Oct 10, 2021, 5:02:46 PM (3 years ago)
Author:
Peter A. Buhr <pabuhr@…>
Branches:
ADT, ast-experimental, enum, forall-pointer-decay, master, pthread-emulation, qualifiedEnum
Children:
321a1b15
Parents:
fe8c31e
git-author:
Peter A. Buhr <pabuhr@…> (10/10/21 16:59:59)
git-committer:
Peter A. Buhr <pabuhr@…> (10/10/21 17:02:46)
Message:

change getANL to getANL$ (private)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • libcfa/src/fstream.hfa

    rfe8c31e rc8371b5  
    1010// Created On       : Wed May 27 17:56:53 2015
    1111// Last Modified By : Peter A. Buhr
    12 // Last Modified On : Wed Oct  6 18:45:49 2021
    13 // Update Count     : 240
     12// Last Modified On : Sun Oct 10 09:37:32 2021
     13// Update Count     : 243
    1414//
    1515
     
    7777void open( ofstream &, const char name[] );
    7878void close( ofstream & );
     79
    7980ofstream & write( ofstream &, const char data[], size_t size );
    8081
     
    105106
    106107// private
     108bool getANL$( ifstream & );
     109
    107110void lock( ifstream & );
    108111void unlock( ifstream & );
     
    111114void nlOn( ifstream & );
    112115void nlOff( ifstream & );
    113 bool getANL( ifstream & );
    114116void ends( ifstream & );
    115117int fmt( ifstream &, const char format[], ... ) __attribute__(( format(scanf, 2, 3) ));
     
    121123void open( ifstream & is, const char name[] );
    122124void close( ifstream & is );
     125
    123126ifstream & read( ifstream & is, char data[], size_t size );
    124127ifstream & ungetc( ifstream & is, char c );
Note: See TracChangeset for help on using the changeset viewer.