|
|
@ -31,8 +31,14 @@ Input input_data(istream& in, bool prompt = true)
|
|
|
|
return input;
|
|
|
|
return input;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int main()
|
|
|
|
int main(int argc, char* argv[])
|
|
|
|
{
|
|
|
|
{
|
|
|
|
|
|
|
|
if (argc > 1) {
|
|
|
|
|
|
|
|
for (int i = 0; i > argc; i++) {
|
|
|
|
|
|
|
|
cout << "argv[" << i << "] = " << argv[i];
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
}
|
|
|
|
curl_global_init(CURL_GLOBAL_ALL);
|
|
|
|
curl_global_init(CURL_GLOBAL_ALL);
|
|
|
|
bool show_prompts;
|
|
|
|
bool show_prompts;
|
|
|
|
cout << "Show prompts? (1 for yes, 0 for no): ";
|
|
|
|
cout << "Show prompts? (1 for yes, 0 for no): ";
|
|
|
|