Changes in libcfa/src/fstream.hfa [5cb2b8c:a87d40b]
- File:
-
- 1 edited
-
libcfa/src/fstream.hfa (modified) (5 diffs)
Legend:
- Unmodified
- Added
- Removed
-
libcfa/src/fstream.hfa
r5cb2b8c ra87d40b 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.