Lines Matching defs:curl
12 * are also available at https://curl.se/docs/copyright.html.
21 * SPDX-License-Identifier: curl
31 #include <curl/curl.h>
41 https://curl.se/libcurl/c/threadsafe.html
45 "https://curl.se/",
53 CURL *curl;
55 curl = curl_easy_init();
56 curl_easy_setopt(curl, CURLOPT_URL, url);
57 curl_easy_perform(curl); /* ignores error */
58 curl_easy_cleanup(curl);