From 1aceeea07c4189e9429ce49d97f754ac7fc59a2b Mon Sep 17 00:00:00 2001 From: MovsisianRG Date: Tue, 21 May 2024 22:30:15 +0300 Subject: [PATCH] code: added lcurl --- main.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/main.cpp b/main.cpp index d0f4735..bf2cfda 100644 --- a/main.cpp +++ b/main.cpp @@ -3,7 +3,7 @@ #include "histogram.h" #include "svg.h" #include "text.h" -//#include "mycheck.h" +#include using namespace std; @@ -60,6 +60,7 @@ input_data(istream& in, bool promt) int main() { + curl_global_init(CURL_GLOBAL_ALL); auto input = input_data(cin, true); auto bins = make_histogram( input.numbers, input.bin_count );