Lines Matching defs:curl
12 * are also available at https://curl.se/docs/copyright.html.
21 * SPDX-License-Identifier: curl
44 #include <curl/curl.h>
71 CURL *curl;
73 curl = curl_easy_init();
74 if(curl) {
78 curl_easy_setopt(curl, CURLOPT_URL, http);
81 curl_easy_setopt(curl, CURLOPT_WRITEDATA, outfile);
82 curl_easy_setopt(curl, CURLOPT_WRITEFUNCTION, write_file);
83 curl_easy_perform(curl);
86 curl_easy_cleanup(curl);