Changes in src/libcfa/iostream [53ba273:4040425]
- File:
-
- 1 edited
-
src/libcfa/iostream (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
src/libcfa/iostream
r53ba273 r4040425 10 10 // Created On : Wed May 27 17:56:53 2015 11 11 // Last Modified By : Peter A. Buhr 12 // Last Modified On : Tue Apr 5 22:32:37 201613 // Update Count : 9012 // Last Modified On : Wed Mar 2 18:05:27 2016 13 // Update Count : 85 14 14 // 15 15 … … 23 23 void sepOn( ostype * ); 24 24 void sepOff( ostype * ); 25 void sepReset( ostype * );26 void sepReset( ostype *, _Bool );27 25 void sepSet( ostype *, const char * ); 28 26 const char * sepGet( ostype * ); 29 _BoolsepDisable( ostype * );30 _BoolsepEnable( ostype * );27 void sepDisable( ostype * ); 28 void sepEnable( ostype * ); 31 29 int fail( ostype * ); 32 30 int flush( ostype * ); … … 69 67 forall( dtype ostype | ostream( ostype ) ) ostype * sepOn( ostype * ); 70 68 forall( 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 * );73 69 74 70 // writes the range [begin, end) to the given stream … … 114 110 forall( dtype istype | istream( istype ) ) istype * ?|?( istype *, long double _Complex * ); 115 111 116 struct _Istream_ cstrUC{ char * s; };117 _Istream_ cstrUC cstr( char * );118 forall( dtype istype | istream( istype ) ) istype * ?|?( istype *, _Istream_ cstrUC);112 struct _Istream_str1 { char * s; }; 113 _Istream_str1 str( char * ); 114 forall( dtype istype | istream( istype ) ) istype * ?|?( istype *, _Istream_str1 ); 119 115 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);116 struct _Istream_str2 { char * s; int size; }; 117 _Istream_str2 str( char *, int size ); 118 forall( dtype istype | istream( istype ) ) istype * ?|?( istype *, _Istream_str2 ); 123 119 124 120 #endif // __IOSTREAM_H__
Note:
See TracChangeset
for help on using the changeset viewer.