Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • libcfa/src/iostream.cfa

    rc8371b5 rb1e614f4  
    1010// Created On       : Wed May 27 17:56:53 2015
    1111// Last Modified By : Peter A. Buhr
    12 // Last Modified On : Sun Oct 10 09:28:17 2021
    13 // Update Count     : 1345
     12// Last Modified On : Sat May 15 09:39:21 2021
     13// Update Count     : 1342
    1414//
    1515
     
    398398                return os;
    399399        } // nlOff
     400} // distribution
     401
     402forall( ostype & | ostream( ostype ) ) {
     403        ostype & acquire( ostype & os ) {
     404                acquire( os );                                                                  // call void returning
     405                return os;
     406        } // acquire
    400407} // distribution
    401408
     
    822829                        fmt( is, "%c", &temp );                                         // must pass pointer through varg to fmt
    823830                        // do not overwrite parameter with newline unless appropriate
    824                         if ( temp != '\n' || getANL$( is ) ) { c = temp; break; }
     831                        if ( temp != '\n' || getANL( is ) ) { c = temp; break; }
    825832                        if ( eof( is ) ) break;
    826833                } // for
     
    10281035                return is;
    10291036        } // nlOff
     1037} // distribution
     1038
     1039forall( istype & | istream( istype ) ) {
     1040        istype & acquire( istype & is ) {
     1041                acquire( is );                                                                  // call void returning
     1042                return is;
     1043        } // acquire
    10301044} // distribution
    10311045
Note: See TracChangeset for help on using the changeset viewer.