Lines Matching defs:curl
12 * are also available at https://curl.se/docs/copyright.html.
21 * SPDX-License-Identifier: curl
29 #include <curl/curl.h>
33 CURL *curl;
35 curl = curl_easy_init();
36 if(curl) {
39 curl_easy_setopt(curl, CURLOPT_URL, "https://example.com");
40 curl_easy_setopt(curl, CURLOPT_REFERER, "https://example.org/referrer");
43 res = curl_easy_perform(curl);
50 res = curl_easy_getinfo(curl, CURLINFO_REFERER, &hdr);
56 curl_easy_cleanup(curl);