|
|
@ -35,8 +35,15 @@ Input input_data(istream& stream, bool prompt)
|
|
|
|
return in;
|
|
|
|
return in;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int main()
|
|
|
|
int main(int argc, char* argv[])
|
|
|
|
{
|
|
|
|
{
|
|
|
|
|
|
|
|
cout << argc << "\n\n\n";
|
|
|
|
|
|
|
|
if (argc > 1){
|
|
|
|
|
|
|
|
for (int i = 0; i < argc; i++){
|
|
|
|
|
|
|
|
cerr << "argv[" << i << "]" << argv[i] << "\n";
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
}
|
|
|
|
curl_global_init(CURL_GLOBAL_ALL);
|
|
|
|
curl_global_init(CURL_GLOBAL_ALL);
|
|
|
|
bool prompt = true;
|
|
|
|
bool prompt = true;
|
|
|
|
auto in = input_data(cin, prompt);
|
|
|
|
auto in = input_data(cin, prompt);
|
|
|
|