1 2 3 4 5 6 7 8 9 10
#include <curl/curl.h> int main() { CURL *curl = curl_easy_init(); if(curl) { curl_easy_cleanup(curl); } return 0; }