#include <curl/curl.h> CURL *curl_easy_init( );
CURL *curl; curl = curl_easy_init(); if(!curl) { perror("curl"); return 1; }