Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/libcfa/iostream

    rc443d1d r829c907  
    1010// Created On       : Wed May 27 17:56:53 2015
    1111// Last Modified By : Peter A. Buhr
    12 // Last Modified On : Mon Mar  6 17:48:01 2017
    13 // Update Count     : 97
     12// Last Modified On : Tue Mar 21 15:57:29 2017
     13// Update Count     : 104
    1414//
    1515
     
    2525        void sepReset( ostype * );                                                      // set separator state to default state
    2626        void sepReset( ostype *, _Bool );                                       // set separator and default state
     27        const char * sepGetCur( ostype * );                                     // get current separator string
     28        void sepSetCur( ostype *, const char * );                       // set current separator string
     29        const char * sepGet( ostype * );                                        // get separator string
    2730        void sepSet( ostype *, const char * );                          // set separator to string (15 character maximum)
    28         const char * sepGet( ostype * );                                        // get separator string
     31        const char * sepGetTuple( ostype * );                           // get tuple separator string
     32        void sepSetTuple( ostype *, const char * );                     // set tuple separator to string (15 character maximum)
    2933        _Bool sepDisable( ostype * );                                           // set default state to off, and return previous state
    3034        _Bool sepEnable( ostype * );                                            // set default state to on, and return previous state
     
    3539        void close( ostype * os );
    3640        ostype * write( ostype *, const char *, unsigned long int );
    37         int prtfmt( ostype *, const char fmt[], ... );
     41        int fmt( ostype *, const char fmt[], ... );
    3842};
    3943
     
    9599        istype * read( istype *, char *, unsigned long int );
    96100        istype * ungetc( istype *, char );
    97         int scanfmt( istype *, const char fmt[], ... );
     101        int fmt( istype *, const char fmt[], ... );
    98102};
    99103
Note: See TracChangeset for help on using the changeset viewer.