Changes in tests/copyfile.cfa [874b16e:29d618e]
- File:
-
- 1 edited
-
tests/copyfile.cfa (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
tests/copyfile.cfa
r874b16e r29d618e 10 10 // Created On : Fri Jun 19 13:44:05 2020 11 11 // Last Modified By : Peter A. Buhr 12 // Last Modified On : Mon Jun 5 21:20:19 202313 // Update Count : 712 // Last Modified On : Sat Aug 15 15:00:48 2020 13 // Update Count : 6 14 14 // 15 15 … … 30 30 exit | "Usage" | argv[0] | "[ input-file (default stdin) [ output-file (default stdout) ] ]"; 31 31 } // choose 32 } catch( open_failure * ex ; ex->istream == &in ) {32 } catch( Open_Failure * ex ; ex->istream == &in ) { 33 33 exit | "Unable to open input file" | argv[1]; 34 } catch( open_failure * ex ; ex->ostream == &out ) {34 } catch( Open_Failure * ex ; ex->ostream == &out ) { 35 35 close( in ); // optional 36 36 exit | "Unable to open output file" | argv[2];
Note:
See TracChangeset
for help on using the changeset viewer.