Changeset 467c8b7
- Timestamp:
- Jan 20, 2021, 8:42:33 PM (4 years ago)
- Branches:
- ADT, arm-eh, ast-experimental, enum, forall-pointer-decay, jacob/cs343-translation, master, new-ast-unique-expr, pthread-emulation, qualifiedEnum
- Children:
- c08c3cf
- Parents:
- 6f36dde
- Location:
- libcfa/src
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
libcfa/src/iostream.cfa
r6f36dde r467c8b7 10 10 // Created On : Wed May 27 17:56:53 2015 11 11 // Last Modified By : Peter A. Buhr 12 // Last Modified On : Mon Aug 24 08:31:35 202013 // Update Count : 113 012 // Last Modified On : Sat Jan 16 11:24:50 2021 13 // Update Count : 1131 14 14 // 15 15 … … 397 397 ostype & nlOff( ostype & os ) { 398 398 nlOff( os ); // call void returning 399 return os; 400 } // nlOff 401 402 ostype & acquire( ostype & os ) { 403 acquire( os ); // call void returning 399 404 return os; 400 405 } // nlOff -
libcfa/src/iostream.hfa
r6f36dde r467c8b7 10 10 // Created On : Wed May 27 17:56:53 2015 11 11 // Last Modified By : Peter A. Buhr 12 // Last Modified On : Tue Aug 11 22:16:14 202013 // Update Count : 35 012 // Last Modified On : Sat Jan 16 11:24:48 2021 13 // Update Count : 351 14 14 // 15 15 … … 41 41 void nlOn( ostype & ); // turn auto-newline state on 42 42 void nlOff( ostype & ); // turn auto-newline state off 43 void acquire( ostype & ); // acquire mutex lock 43 44 44 45 const char * sepGet( ostype & ); // get separator string … … 137 138 ostype & nlOn( ostype & ); 138 139 ostype & nlOff( ostype & ); 140 ostype & acquire( ostype & ); 139 141 } // distribution 140 142
Note: See TracChangeset
for help on using the changeset viewer.