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>
64 CURL *curl = curl_easy_init();
65 if(curl) {
68 curl_easy_setopt(curl, CURLOPT_URL, "https://curl.se/");
71 curl_easy_setopt(curl, CURLOPT_SHARE, share);
74 res = curl_easy_perform(curl);
81 curl_easy_cleanup(curl);