From 2289340d92b366a84d8d52797eb99260ed422b33 Mon Sep 17 00:00:00 2001 From: KnyazevSK Date: Sun, 4 Jun 2023 16:23:11 +0400 Subject: [PATCH] =?UTF-8?q?code:=20=D0=BF=D0=BE=D0=B4=D0=BA=D0=BB=D1=8E?= =?UTF-8?q?=D1=87=D0=B8=D0=BB=20curl=20=D0=BA=20=D0=BF=D1=80=D0=BE=D0=B5?= =?UTF-8?q?=D0=BA=D1=82=D1=83?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- project/main.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/project/main.cpp b/project/main.cpp index ffa867d..e8b81d7 100644 --- a/project/main.cpp +++ b/project/main.cpp @@ -4,6 +4,8 @@ #include "histogram.h" #include "text.h" #include "svg.h" +#include + using namespace std; struct Input @@ -35,6 +37,7 @@ input_data(istream& in, bool prompt) int main() { + curl_global_init(CURL_GLOBAL_ALL); auto in = input_data(cin, true); auto bins = make_histogram(in.numbers, in.bin_count); show_histogram_svg(bins);