Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • libcfa/src/fstream.hfa

    r5cb2b8c ra87d40b  
    1010// Created On       : Wed May 27 17:56:53 2015
    1111// Last Modified By : Peter A. Buhr
    12 // Last Modified On : Thu May 16 08:34:10 2019
    13 // Update Count     : 157
     12// Last Modified On : Mon Jul 15 18:10:23 2019
     13// Update Count     : 167
    1414//
    1515
     
    1717
    1818#include "iostream.hfa"
     19
     20
     21//*********************************** ofstream ***********************************
     22
    1923
    2024enum { sepSize = 16 };
     
    5660void sepSetTuple( ofstream &, const char * );
    5761
     62void ends( ofstream & os );
    5863int fail( ofstream & );
    5964int flush( ofstream & );
     
    6873void ?{}( ofstream & os, const char * name );
    6974
    70 extern ofstream & sout, & serr;
     75extern ofstream & sout, & stdout, & serr, & stderr;             // aliases
     76extern ofstream & exit, & abort;
    7177
    72 // extern ofstream & sout, & serr, & sexit, & sabort;
    73 // void nl( ofstream & os );
     78
     79//*********************************** ifstream ***********************************
    7480
    7581
     
    96102void ?{}( ifstream & is, const char * name );
    97103
    98 extern ifstream & sin;
     104extern ifstream & sin, & stdin;                                                 // aliases
    99105
    100106// Local Variables: //
Note: See TracChangeset for help on using the changeset viewer.