Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/libcfa/iostream

    r53ba273 r4040425  
    1010// Created On       : Wed May 27 17:56:53 2015
    1111// Last Modified By : Peter A. Buhr
    12 // Last Modified On : Tue Apr  5 22:32:37 2016
    13 // Update Count     : 90
     12// Last Modified On : Wed Mar  2 18:05:27 2016
     13// Update Count     : 85
    1414//
    1515
     
    2323        void sepOn( ostype * );
    2424        void sepOff( ostype * );
    25         void sepReset( ostype * );
    26         void sepReset( ostype *, _Bool );
    2725        void sepSet( ostype *, const char * );
    2826        const char * sepGet( ostype * );
    29         _Bool sepDisable( ostype * );
    30         _Bool sepEnable( ostype * );
     27        void sepDisable( ostype * );
     28        void sepEnable( ostype * );
    3129        int fail( ostype * );
    3230        int flush( ostype * );
     
    6967forall( dtype ostype | ostream( ostype ) ) ostype * sepOn( ostype * );
    7068forall( dtype ostype | ostream( ostype ) ) ostype * sepOff( ostype * );
    71 forall( dtype ostype | ostream( ostype ) ) ostype * sepDisable( ostype * );
    72 forall( dtype ostype | ostream( ostype ) ) ostype * sepEnable( ostype * );
    7369
    7470// writes the range [begin, end) to the given stream
     
    114110forall( dtype istype | istream( istype ) ) istype * ?|?( istype *, long double _Complex * );
    115111
    116 struct _Istream_cstrUC { char * s; };
    117 _Istream_cstrUC cstr( char * );
    118 forall( dtype istype | istream( istype ) ) istype * ?|?( istype *, _Istream_cstrUC );
     112struct _Istream_str1 { char * s; };
     113_Istream_str1 str( char * );
     114forall( dtype istype | istream( istype ) ) istype * ?|?( istype *, _Istream_str1 );
    119115
    120 struct _Istream_cstrC { char * s; int size; };
    121 _Istream_cstrC cstr( char *, int size );
    122 forall( dtype istype | istream( istype ) ) istype * ?|?( istype *, _Istream_cstrC );
     116struct _Istream_str2 { char * s; int size; };
     117_Istream_str2 str( char *, int size );
     118forall( dtype istype | istream( istype ) ) istype * ?|?( istype *, _Istream_str2 );
    123119
    124120#endif // __IOSTREAM_H__
Note: See TracChangeset for help on using the changeset viewer.