Lines Matching defs:curl
12 * are also available at https://curl.se/docs/copyright.html.
21 * SPDX-License-Identifier: curl
32 CURL *curl;
39 curl = curl_easy_init();
40 if(!curl) {
46 test_setopt(curl, CURLOPT_URL, URL);
47 test_setopt(curl, CURLOPT_HEADER, 1L);
48 test_setopt(curl, CURLOPT_BUFFERSIZE, 1L); /* the smallest! */
50 res = curl_easy_perform(curl);
53 curl_easy_cleanup(curl);