Changeset f53acdf8 for libcfa/src/fstream.hfa
- Timestamp:
- Jul 19, 2019, 2:16:01 PM (6 years ago)
- Branches:
- ADT, arm-eh, ast-experimental, enum, forall-pointer-decay, jacob/cs343-translation, master, new-ast, new-ast-unique-expr, pthread-emulation, qualifiedEnum
- Children:
- 4eb43fa
- Parents:
- 1f1c102 (diff), 8ac3b0e (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
-
libcfa/src/fstream.hfa
r1f1c102 rf53acdf8 10 10 // Created On : Wed May 27 17:56:53 2015 11 11 // Last Modified By : Peter A. Buhr 12 // Last Modified On : Thu May 16 08:34:10201913 // Update Count : 1 5712 // Last Modified On : Mon Jul 15 18:10:23 2019 13 // Update Count : 167 14 14 // 15 15 … … 17 17 18 18 #include "iostream.hfa" 19 20 21 //*********************************** ofstream *********************************** 22 19 23 20 24 enum { sepSize = 16 }; … … 56 60 void sepSetTuple( ofstream &, const char * ); 57 61 62 void ends( ofstream & os ); 58 63 int fail( ofstream & ); 59 64 int flush( ofstream & ); … … 68 73 void ?{}( ofstream & os, const char * name ); 69 74 70 extern ofstream & sout, & serr; 75 extern ofstream & sout, & stdout, & serr, & stderr; // aliases 76 extern ofstream & exit, & abort; 71 77 72 // extern ofstream & sout, & serr, & sexit, & sabort; 73 // void nl( ofstream & os );78 79 //*********************************** ifstream *********************************** 74 80 75 81 … … 96 102 void ?{}( ifstream & is, const char * name ); 97 103 98 extern ifstream & sin ;104 extern ifstream & sin, & stdin; // aliases 99 105 100 106 // Local Variables: //
Note:
See TracChangeset
for help on using the changeset viewer.