Changeset ebf0820 for src/libcfa/fstream
- Timestamp:
- Dec 11, 2017, 4:42:15 PM (7 years ago)
- Branches:
- ADT, aaron-thesis, arm-eh, ast-experimental, cleanup-dtors, deferred_resn, demangler, enum, forall-pointer-decay, jacob/cs343-translation, jenkins-sandbox, master, new-ast, new-ast-unique-expr, new-env, no_list, persistent-indexer, pthread-emulation, qualifiedEnum, resolv-new, with_gc
- Children:
- 326cd2b, 90449e4
- Parents:
- 7faab5e (diff), 4160c072 (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
-
TabularUnified src/libcfa/fstream ¶
r7faab5e rebf0820 10 10 // Created On : Wed May 27 17:56:53 2015 11 11 // Last Modified By : Peter A. Buhr 12 // Last Modified On : Thu Dec 7 08:06:11201713 // Update Count : 1 2912 // Last Modified On : Thu Dec 7 15:17:26 2017 13 // Update Count : 130 14 14 // 15 15 … … 52 52 int flush( ofstream & ); 53 53 void open( ofstream &, const char * name, const char * mode ); 54 void open( ofstream &, const char * name ); 54 55 void close( ofstream & ); 55 56 ofstream & write( ofstream &, const char * data, unsigned long int size ); … … 58 59 void ?{}( ofstream & os ); 59 60 void ?{}( ofstream & os, const char * name, const char * mode ); 61 void ?{}( ofstream & os, const char * name ); 60 62 61 63 extern ofstream & sout, & serr; … … 69 71 int fail( ifstream & is ); 70 72 int eof( ifstream & is ); 73 void open( ifstream & is, const char * name, const char * mode ); 71 74 void open( ifstream & is, const char * name ); 72 75 void close( ifstream & is ); … … 76 79 77 80 void ?{}( ifstream & is ); 81 void ?{}( ifstream & is, const char * name, const char * mode ); 78 82 void ?{}( ifstream & is, const char * name ); 79 83
Note: See TracChangeset
for help on using the changeset viewer.