Changeset a4da45e for tests/io/manipulatorsInput.cfa
- Timestamp:
- Feb 26, 2024, 3:53:42 AM (19 months ago)
- Branches:
- master
- Children:
- 3f9a8d0
- Parents:
- 0522ebe (diff), 022bce0 (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
Legend:
- Unmodified
- Added
- Removed
-
tests/io/manipulatorsInput.cfa
r0522ebe ra4da45e 7 7 // Created On : Sat Jun 8 17:58:54 2019 8 8 // Last Modified By : Peter A. Buhr 9 // Last Modified On : Sun Jan 28 11:59:55202410 // Update Count : 13 39 // Last Modified On : Mon Feb 5 21:54:49 2024 10 // Update Count : 134 11 11 // 12 12 … … 114 114 sin | wdi( sizeof(s), s ); sout | "2" | s; 115 115 sin | ignore( s ); sout | "3" | s; 116 116 sin | wdi( sizeof(s), 8, s ); sout | "4" | s; 117 117 sin | ignore( wdi( sizeof(s), 8, s ) ); sout | "5" | s; 118 118 … … 131 131 s[0] = 'q'; s[1] = '\0'; 132 132 sin | excl( "u", wdi( sizeof(s), s ) ); sout | "15" | s; 133 sin | skip( "u" ) | "\n";133 sin | skip( "u" ) | nl; 134 134 sin | getline( wdi( sizeof(s), s ) ); sout | "16" | s; 135 sin | getline( wdi( sizeof(s), s ), '%' ) | "\n"; sout | "17" | s;136 sin | ignore( getline( wdi( sizeof(s), s ), '%' ) ) | "\n"; sout | "18" | s;135 sin | getline( wdi( sizeof(s), s ), '%' ) | nl; sout | "17" | s; 136 sin | ignore( getline( wdi( sizeof(s), s ), '%' ) ) | nl; sout | "18" | s; 137 137 138 138 sin | quoted( wdi( sizeof(s), s ) ); sout | "19" | s;
Note:
See TracChangeset
for help on using the changeset viewer.