Lines Matching defs:curl
12 * are also available at https://curl.se/docs/copyright.html.
21 * SPDX-License-Identifier: curl
30 #include <curl/curl.h>
34 CURL *curl;
45 curl = curl_easy_init();
46 if(curl) {
47 curl_easy_setopt(curl, CURLOPT_RESOLVE, host);
48 curl_easy_setopt(curl, CURLOPT_URL, "https://example.com");
49 res = curl_easy_perform(curl);
52 curl_easy_cleanup(curl);