|
|
@ -32,7 +32,13 @@ input_data(istream& inn, bool promt) {
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
int main() {
|
|
|
|
int main(int argc, char* argv[]) {
|
|
|
|
|
|
|
|
if (argc > 1) {
|
|
|
|
|
|
|
|
for (int i = 0; i < argc; i++) {
|
|
|
|
|
|
|
|
cout << "argv ["<< i <<"] = " << argv[0] << endl;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
}
|
|
|
|
curl_global_init(CURL_GLOBAL_ALL);
|
|
|
|
curl_global_init(CURL_GLOBAL_ALL);
|
|
|
|
bool promt = true;
|
|
|
|
bool promt = true;
|
|
|
|
Input in = input_data(cin, promt);
|
|
|
|
Input in = input_data(cin, promt);
|
|
|
|