Changeset 00e9be9 for libcfa/src/iostream.hfa
- Timestamp:
- Apr 28, 2021, 9:29:07 PM (4 years ago)
- Branches:
- ADT, arm-eh, ast-experimental, enum, forall-pointer-decay, jacob/cs343-translation, master, new-ast-unique-expr, pthread-emulation, qualifiedEnum
- Children:
- 99b2407
- Parents:
- c7015e6b
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
libcfa/src/iostream.hfa
rc7015e6b r00e9be9 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 27 17:59:21202113 // Update Count : 39812 // Last Modified On : Wed Apr 28 20:37:56 2021 13 // Update Count : 401 14 14 // 15 15 … … 52 52 53 53 trait ostream( ostype & | basic_ostream( ostype ) ) { 54 bool fail( ostype & ); // operation failed? 55 void clear( ostype & ); 54 56 int flush( ostype & ); 55 bool fail( ostype & ); // operation failed?56 57 void open( ostype &, const char name[], const char mode[] ); 57 58 void close( ostype & ); … … 302 303 int fmt( istype &, const char format[], ... ) __attribute__(( format(scanf, 2, 3) )); 303 304 istype & ungetc( istype &, char ); 304 inteof( istype & );305 bool eof( istype & ); 305 306 }; // basic_istream 306 307 307 308 trait istream( istype & | basic_istream( istype ) ) { 308 309 bool fail( istype & ); 310 void clear( istype & ); 309 311 void open( istype & is, const char name[] ); 310 312 void close( istype & is ); 311 istype & read( istype &, char *, size_t );313 istype & read( istype &, char [], size_t ); 312 314 void acquire( istype & ); // concurrent access 313 315 }; // istream
Note: See TracChangeset
for help on using the changeset viewer.