From e39ad2d12c0ab173c14a26248a951c6bb36fca18 Mon Sep 17 00:00:00 2001 From: TroyanovDS Date: Sat, 3 Jun 2023 15:45:41 +0300 Subject: [PATCH] =?UTF-8?q?code:=20=D0=A3=D1=81=D1=82=D0=B0=D0=BD=D0=BE?= =?UTF-8?q?=D0=B2=D0=BA=D0=B0=20curl?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- main.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/main.cpp b/main.cpp index 5e2bfb4..034835c 100644 --- a/main.cpp +++ b/main.cpp @@ -4,6 +4,8 @@ #include "histogram.h" #include "text.h" #include "svg.h" +#include + using namespace std; const size_t SCREEN_WIDTH = 80; @@ -50,6 +52,8 @@ return in; int main() { + curl_global_init(CURL_GLOBAL_ALL); + auto in = input_data(cin); auto bins = make_histogram(in.numbers, in.bin_count);