From 165cfe7b84839b4df09b2605040cb689532bfb72 Mon Sep 17 00:00:00 2001 From: Tanya Date: Mon, 13 May 2024 16:34:37 +0300 Subject: [PATCH] =?UTF-8?q?=D0=BE=D0=B1=D0=B0=D0=B2=D0=BB=D0=B5=D0=BD?= =?UTF-8?q?=D0=B0=20=D0=B1=D0=B8=D0=B1=D0=BB=D0=B8=D0=BE=D1=82=D0=B5=D0=BA?= =?UTF-8?q?=D0=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- main.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/main.cpp b/main.cpp index f5aa593..dd488d7 100644 --- a/main.cpp +++ b/main.cpp @@ -4,6 +4,8 @@ #include "histogram.h" #include "text.h" #include "svg.h" +#include + using namespace std; @@ -39,6 +41,7 @@ input_data(istream& in, bool prompt = true){ } int main() { + curl_global_init(CURL_GLOBAL_ALL); Input in = input_data(cin); auto bins = make_histogram(in.numbers, in.bin_count); show_histogram_svg(bins);