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;
39 curl = curl_easy_init();
40 if(curl) {
41 curl_easy_setopt(curl, CURLOPT_VERBOSE, 1L);
42 curl_easy_setopt(curl, CURLOPT_HEADER, 1L);
45 curl_easy_setopt(curl, CURLOPT_URL, "https://example.com/");
48 res = curl_easy_perform(curl);
56 curl_easy_setopt(curl, CURLOPT_URL, "https://example.com/docs/");
59 res = curl_easy_perform(curl);
66 curl_easy_cleanup(curl);