Changeset 1adab3e
- Timestamp:
- Jan 21, 2021, 1:05:59 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:
- 7b91c0e
- Parents:
- 12b4ab4
- Location:
- libcfa/src
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
libcfa/src/iostream.cfa
r12b4ab4 r1adab3e 10 10 // Created On : Wed May 27 17:56:53 2015 11 11 // Last Modified By : Peter A. Buhr 12 // Last Modified On : Sat Jan 16 11:24:50 202113 // Update Count : 113 112 // Last Modified On : Mon Aug 24 08:31:35 2020 13 // Update Count : 1130 14 14 // 15 15 … … 397 397 ostype & nlOff( ostype & os ) { 398 398 nlOff( os ); // call void returning 399 return os;400 } // nlOff401 402 ostype & acquire( ostype & os ) {403 acquire( os ); // call void returning404 399 return os; 405 400 } // nlOff -
libcfa/src/iostream.hfa
r12b4ab4 r1adab3e 10 10 // Created On : Wed May 27 17:56:53 2015 11 11 // Last Modified By : Peter A. Buhr 12 // Last Modified On : Sat Jan 16 11:24:48 202113 // Update Count : 35 112 // Last Modified On : Tue Aug 11 22:16:14 2020 13 // Update Count : 350 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 lock44 43 45 44 const char * sepGet( ostype & ); // get separator string … … 138 137 ostype & nlOn( ostype & ); 139 138 ostype & nlOff( ostype & ); 140 ostype & acquire( ostype & );141 139 } // distribution 142 140
Note: See TracChangeset
for help on using the changeset viewer.