Lines Matching defs:curl
12 * are also available at https://curl.se/docs/copyright.html.
21 * SPDX-License-Identifier: curl
50 CURL *curl = NULL;
56 easy_init(curl);
58 easy_setopt(curl, CURLOPT_HEADERFUNCTION, header);
59 easy_setopt(curl, CURLOPT_HEADERDATA, &info);
60 easy_setopt(curl, CURLOPT_VERBOSE, 1L);
61 easy_setopt(curl, CURLOPT_URL, URL);
63 code = curl_easy_perform(curl);
76 curl_easy_cleanup(curl);