Сравнить коммиты

..

Ничего общего в коммитах. 'be8d8068d078b518d11c788946bf2814cc78364e' и '57ed0827c0cd60cdc1aa647cd26d6abc8dd12113' имеют совершенно разные истории.

1
.gitignore поставляемый

@ -1,4 +1,3 @@
/curl
/bin /bin
/obj /obj
/*.layout /*.layout

@ -3,7 +3,6 @@
#include "histogram.h" #include "histogram.h"
#include "text.h" #include "text.h"
#include "svg.h" #include "svg.h"
#include <curl/curl.h>
using namespace std; using namespace std;
struct Input { struct Input {
@ -11,44 +10,25 @@ struct Input {
size_t bin_count; size_t bin_count;
}; };
Input input_data(istream& in, bool prompt) { Input input_data(istream& in) {
Input inp; Input inp;
size_t number_count; size_t number_count;
if (prompt){ cerr << "Enter number count: ";
cerr << "Enter number count: ";
}
cin >> number_count; cin >> number_count;
inp.numbers.resize(number_count); inp.numbers.resize(number_count);
if (prompt){ cerr << "Enter numbers: ";
cerr << "Enter numbers: ";
}
for (size_t i = 0; i < number_count; i++) { for (size_t i = 0; i < number_count; i++) {
cin >> inp.numbers[i]; cin >> inp.numbers[i];
} }
if (prompt) { cerr << "Enter bin count: ";
cerr << "Enter bin count: ";
}
cin >> inp.bin_count; cin >> inp.bin_count;
return inp; return inp;
} }
int main(int argc, char* argv[]) { int main() {
curl_global_init(CURL_GLOBAL_ALL); auto in = input_data(cin);
if (argc > 1) {
CURL* curl = curl_easy_init();
if(curl) {
CURLcode res;
curl_easy_setopt(curl, CURLOPT_URL, argv[1]);
res = curl_easy_perform(curl);
if (res != CURLE_OK){
cerr << curl_easy_strerror(res);
exit(1);
}
curl_easy_cleanup(curl);
}
}
auto in = input_data(cin, true);
auto bins = make_histogram(in.numbers, in.bin_count); auto bins = make_histogram(in.numbers, in.bin_count);
show_histogram_svg(bins); show_histogram_svg(bins);
return 0; return 0;

Загрузка…
Отмена
Сохранить