Home | History | Annotate | Download | only in examples

Lines Matching refs:CURL

12  * are also available at https://curl.haxx.se/docs/copyright.html.
29 #include <curl/curl.h>
43 "https://curl.haxx.se/",
51 CURL *curl;
53 curl = curl_easy_init();
54 curl_easy_setopt(curl, CURLOPT_URL, url);
55 curl_easy_perform(curl); /* ignores error */
56 curl_easy_cleanup(curl);