changeset 63 | 5a82f89d607e |
parent 29 | 7abf6146898e |
child 77 | 49e0babccb23 |
62:b7061c0e239f | 63:5a82f89d607e |
---|---|
13 std::ofstream out; |
13 std::ofstream out; |
14 |
14 |
15 char c; |
15 char c; |
16 |
16 |
17 if (argc != 3) { |
17 if (argc != 3) { |
18 std::cout << "Benutzung: " << argv[0] << " <datei> <datei>" << std::endl; |
18 std::cout << "Benutzung: " << argv[0] << " <QUELLE> <ZIEL>" << std::endl; |
19 return EXIT_SUCCESS; |
19 return EXIT_SUCCESS; |
20 } |
20 } |
21 |
21 |
22 in.open (argv[1], std::ios::binary); |
22 in.open (argv[1], std::ios::binary); |
23 if (!in) { |
23 if (!in) { |