Changeset cbef27b for libcfa/src/fstream.cfa
- Timestamp:
- Apr 26, 2019, 4:56:16 PM (7 years ago)
- Branches:
- ADT, arm-eh, ast-experimental, cleanup-dtors, enum, forall-pointer-decay, jacob/cs343-translation, jenkins-sandbox, master, new-ast, new-ast-unique-expr, pthread-emulation, qualifiedEnum
- Children:
- 8d63649
- Parents:
- 3898392 (diff), bd405fa (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
-
libcfa/src/fstream.cfa (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
libcfa/src/fstream.cfa
r3898392 rcbef27b 10 10 // Created On : Wed May 27 17:56:53 2015 11 11 // Last Modified By : Peter A. Buhr 12 // Last Modified On : Thu Mar 28 17:39:53 201913 // Update Count : 3 0712 // Last Modified On : Sat Apr 20 12:03:43 2019 13 // Update Count : 311 14 14 // 15 15 … … 33 33 os.nlOnOff = nlOnOff; 34 34 os.prt = prt; 35 os.sawNL = false; 35 36 sepSet( os, separator ); 36 37 sepSetCur( os, sepGet( os ) ); … … 162 163 void ?{}( ifstream & is, void * file ) { 163 164 is.file = file; 165 is.nlOnOff = false; 164 166 } 165 167 … … 173 175 open( is, name, "r" ); 174 176 } 177 178 void nlOn( ifstream & os ) { os.nlOnOff = true; } 179 void nlOff( ifstream & os ) { os.nlOnOff = false; } 180 bool getANL( ifstream & os ) { return os.nlOnOff; } 175 181 176 182 int fail( ifstream & is ) {
Note:
See TracChangeset
for help on using the changeset viewer.