mirror of
https://github.com/ondra-novak/gates_of_skeldal.git
synced 2025-07-08 15:40:28 -04:00
linux release build, cleanup repository
This commit is contained in:
parent
529b3e8bf8
commit
3d8ee275e4
441 changed files with 280 additions and 65861 deletions
|
@ -4,17 +4,18 @@
|
|||
|
||||
int main(int argc, char **argv) {
|
||||
if (argc != 2) {
|
||||
std::cerr << "Requires name of the file" << std::endl;
|
||||
std::cerr << "Requires name of the input file" << std::endl;
|
||||
return 1;
|
||||
}
|
||||
|
||||
std::ifstream input(argv[1], std::ios::in|std::ios::binary);
|
||||
if (!input) {
|
||||
std::cerr << "Failed to open:" << argv[1] << std::endl;
|
||||
return 2;
|
||||
}
|
||||
auto in_iter = std::istream_iterator<char>(input);
|
||||
auto in_end = std::istream_iterator<char>();
|
||||
auto in_iter = std::istreambuf_iterator<char>(input);
|
||||
auto in_end = std::istreambuf_iterator<char>();
|
||||
auto out_iter = std::ostream_iterator<char>(std::cout);
|
||||
base64.encode(in_iter, in_end, out_iter);
|
||||
return 0;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue