Changeset 37218fc for src/libcfa/iostream
- Timestamp:
- Apr 11, 2016, 11:51:07 AM (9 years ago)
- Branches:
- ADT, aaron-thesis, arm-eh, ast-experimental, cleanup-dtors, ctor, deferred_resn, demangler, enum, forall-pointer-decay, gc_noraii, jacob/cs343-translation, jenkins-sandbox, master, memory, new-ast, new-ast-unique-expr, new-env, no_list, persistent-indexer, pthread-emulation, qualifiedEnum, resolv-new, string, with_gc
- Children:
- 37f0da8
- Parents:
- 3aba311 (diff), e55ca05 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/libcfa/iostream
r3aba311 r37218fc 10 10 // Created On : Wed May 27 17:56:53 2015 11 11 // Last Modified By : Peter A. Buhr 12 // Last Modified On : Wed Mar 2 18:05:27 201613 // Update Count : 8512 // Last Modified On : Tue Apr 5 22:32:37 2016 13 // Update Count : 90 14 14 // 15 15 … … 23 23 void sepOn( ostype * ); 24 24 void sepOff( ostype * ); 25 void sepReset( ostype * ); 26 void sepReset( ostype *, _Bool ); 25 27 void sepSet( ostype *, const char * ); 26 28 const char * sepGet( ostype * ); 27 voidsepDisable( ostype * );28 voidsepEnable( ostype * );29 _Bool sepDisable( ostype * ); 30 _Bool sepEnable( ostype * ); 29 31 int fail( ostype * ); 30 32 int flush( ostype * ); … … 67 69 forall( dtype ostype | ostream( ostype ) ) ostype * sepOn( ostype * ); 68 70 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 * ); 69 73 70 74 // writes the range [begin, end) to the given stream … … 110 114 forall( dtype istype | istream( istype ) ) istype * ?|?( istype *, long double _Complex * ); 111 115 112 struct _Istream_ str1{ char * s; };113 _Istream_ str1str( char * );114 forall( dtype istype | istream( istype ) ) istype * ?|?( istype *, _Istream_ str1);116 struct _Istream_cstrUC { char * s; }; 117 _Istream_cstrUC cstr( char * ); 118 forall( dtype istype | istream( istype ) ) istype * ?|?( istype *, _Istream_cstrUC ); 115 119 116 struct _Istream_ str2{ char * s; int size; };117 _Istream_ str2str( char *, int size );118 forall( dtype istype | istream( istype ) ) istype * ?|?( istype *, _Istream_ str2);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 ); 119 123 120 124 #endif // __IOSTREAM_H__
Note:
See TracChangeset
for help on using the changeset viewer.