Changeset 30548de for tests/io/manipulatorsInput.cfa
- Timestamp:
- Apr 11, 2025, 6:39:45 PM (5 months ago)
- Branches:
- master
- Children:
- a514fed
- Parents:
- a800a19
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
tests/io/manipulatorsInput.cfa
ra800a19 r30548de 7 7 // Created On : Sat Jun 8 17:58:54 2019 8 8 // Last Modified By : Peter A. Buhr 9 // Last Modified On : Mon Feb 5 21:54:49 202410 // Update Count : 13 49 // Last Modified On : Fri Apr 11 18:12:25 2025 10 // Update Count : 135 11 11 // 12 12 … … 136 136 sin | ignore( getline( wdi( sizeof(s), s ), '%' ) ) | nl; sout | "18" | s; 137 137 138 sin | quote d( wdi( sizeof(s), s ) );sout | "19" | s;139 sin | quote d( wdi( sizeof(s), s ), '\'' ); sout | "20" | s;140 sin | quote d( wdi( sizeof(s), s ), '{', '}' ); sout | "21" | s;141 sin | quote d( wdi( sizeof(s), s ), 'X', 'Y' ); sout | "22" | s;142 sin | ignore( quote d( wdi( sizeof(s), s ), 'X', 'Y' ) ); sout | "23" | s;138 sin | quote( wdi( sizeof(s), s ) ); sout | "19" | s; 139 sin | quote( wdi( sizeof(s), s ), '\'' ); sout | "20" | s; 140 sin | quote( wdi( sizeof(s), s ), '{', '}' ); sout | "21" | s; 141 sin | quote( wdi( sizeof(s), s ), 'X', 'Y' ); sout | "22" | s; 142 sin | ignore( quote( wdi( sizeof(s), s ), 'X', 'Y' ) ); sout | "23" | s; 143 143 144 144 char ch; 145 sin | quote d( ch ); sout | "24 " | ch;146 sin | quote d( ch, '\"' ); sout | "25 " | ch;147 sin | quote d( ch, '{', '}' ); sout | "26 " | ch;148 sin | quote d( ch, 'X', 'Y' ); sout | "27 " | ch;149 sin | ignore( quote d( ch, 'X', 'Y' ) ); sout | "28 " | ch;145 sin | quote( ch ); sout | "24 " | ch; 146 sin | quote( ch, '\"' ); sout | "25 " | ch; 147 sin | quote( ch, '{', '}' ); sout | "26 " | ch; 148 sin | quote( ch, 'X', 'Y' ); sout | "27 " | ch; 149 sin | ignore( quote( ch, 'X', 'Y' ) ); sout | "28 " | ch; 150 150 sin | nl; 151 151 }
Note:
See TracChangeset
for help on using the changeset viewer.