Changeset 53ba273 for src/libcfa/iostream
- Timestamp:
- Apr 6, 2016, 10:08:32 PM (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:
- 3d9b5da, 78885b5
- Parents:
- 3cfe27f
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/libcfa/iostream
r3cfe27f r53ba273 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.