Skip to content

Instantly share code, notes, and snippets.

View blgnksy's full-sized avatar

Bilgin Aksoy blgnksy

  • METU
  • Berlin, Germany
View GitHub Profile
@blgnksy
blgnksy / curl_example.cpp
Created November 18, 2019 17:47 — forked from alghanmi/curl_example.cpp
cURL C++ Example
#include <iostream>
#include <string>
#include <curl/curl.h>
static size_t WriteCallback(void *contents, size_t size, size_t nmemb, void *userp)
{
((std::string*)userp)->append((char*)contents, size * nmemb);
return size * nmemb;
}