oktw says to #ysitd <licson>: #include <curl/curl.h> CURL* ch = curl_easy_init(); if(curl){ CURLcode res; curl_easy_setopt(ch, CURLOPT_URL, "http://example.com"); res = curl_easy_perform(ch); curl_easy_cleanup(ch); }