Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/libcfa/fstream

    r829c907 r6152c81  
    1010// Created On       : Wed May 27 17:56:53 2015
    1111// Last Modified By : Peter A. Buhr
    12 // Last Modified On : Tue Mar 21 15:57:24 2017
    13 // Update Count     : 102
     12// Last Modified On : Tue Mar  7 14:48:08 2017
     13// Update Count     : 91
    1414//
    1515
     
    2121enum { separateSize = 16 };
    2222struct ofstream {
    23         void * file;
     23        void *file;
    2424        _Bool sepDefault;
    2525        _Bool sepOnOff;
    26         const char * sepCur;
    2726        char separator[separateSize];
    28         char tupleSeparator[separateSize];
    2927}; // ofstream
    3028
     
    3432void sepReset( ofstream * );
    3533void sepReset( ofstream *, _Bool );
    36 const char * sepGetCur( ofstream * );
    37 void sepSetCur( ofstream *, const char * );
    3834const char * sepGet( ofstream * );
    3935void sepSet( ofstream *, const char * );
    40 const char * sepGetTuple( ofstream * );
    41 void sepSetTuple( ofstream *, const char * );
    4236_Bool sepDisable( ofstream * );
    4337_Bool sepEnable( ofstream * );
     
    4842void close( ofstream * );
    4943ofstream * write( ofstream *, const char * data, unsigned long int size );
    50 int fmt( ofstream *, const char fmt[], ... );
    51 
    52 void ?{}( ofstream * );
     44int prtfmt( ofstream *, const char fmt[], ... );
    5345
    5446extern ofstream * sout, * serr;
     
    5648// implement context istream
    5749struct ifstream {
    58         void * file;
     50        void *file;
    5951}; // ifstream
    6052
     
    6557ifstream * read( ifstream * is, char * data, unsigned long int size );
    6658ifstream * ungetc( ifstream * is, char c );
    67 int fmt( ifstream *, const char fmt[], ... );
     59int scanfmt( ifstream *, const char fmt[], ... );
    6860
    69 extern ifstream * sin;
     61extern ifstream *sin;
    7062
    7163#endif // __FSTREAM_H__
Note: See TracChangeset for help on using the changeset viewer.