From db0674da9432f0d7c318b93d82d07a13a397423d Mon Sep 17 00:00:00 2001 From: grudininyk Date: Sun, 26 May 2024 17:45:38 +0300 Subject: [PATCH] code: curl easy init --- main.cpp | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/main.cpp b/main.cpp index a9371c0..8b744e0 100644 --- a/main.cpp +++ b/main.cpp @@ -38,12 +38,15 @@ Input input_data(istream& stream, bool prompt) { int main(int argc, char* argv[]) { if (argc > 1) { - for (int i = 0; i > argc; i++) { - cout << "argv[" << i << "] = " << argv[i]; + CURL *curl = curl_easy_init(); + if(curl) { + CURLcode res; + curl_easy_setopt(curl, CURLOPT_URL, argv[1]); + res = curl_easy_perform(curl); + curl_easy_cleanup(curl); } return 0; } - curl_global_init(CURL_GLOBAL_ALL); Input in = input_data(cin, false); vector bins = make_histogram(in.numbers, in.bin_count); show_histogram_svg(bins);