Changes in libcfa/src/fstream.hfa [d0cfcbe1:e0dc038]
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
libcfa/src/fstream.hfa
rd0cfcbe1 re0dc038 10 10 // Created On : Wed May 27 17:56:53 2015 11 11 // Last Modified By : Peter A. Buhr 12 // Last Modified On : Fri Aug 18 10:41:15202313 // Update Count : 2 5812 // Last Modified On : Fri Oct 13 13:55:21 2023 13 // Update Count : 260 14 14 // 15 15 … … 119 119 void ends( ifstream & ); 120 120 int fmt( ifstream &, const char format[], ... ) __attribute__(( format(scanf, 2, 3) )); 121 ifstream & ungetc( ifstream & is, char c ); 122 bool eof( ifstream & is ); 121 123 122 124 bool fail( ifstream & is ); 123 125 void clear( ifstream & ); 124 bool eof( ifstream & is );125 126 void open( ifstream & is, const char name[], const char mode[] ); // FIX ME: use default = "r" 126 127 void open( ifstream & is, const char name[] ); 127 128 void close( ifstream & is ); 128 129 129 ifstream & read( ifstream & is, char data[], size_t size ); 130 ifstream & ungetc( ifstream & is, char c );131 130 132 131 void ?{}( ifstream & is );
Note:
See TracChangeset
for help on using the changeset viewer.