Lines Matching +full:test +full:- +full:cl
21 * SPDX-License-Identifier: curl
25 #include "test.h"
32 CURLcode test(char *URL) in test() function
35 CURL *cl; in test() local
40 easy_init(cl); in test()
41 easy_setopt(cl, CURLOPT_URL, URL); in test()
42 easy_setopt(cl, CURLOPT_VERBOSE, 1L); in test()
43 res = curl_easy_perform(cl); in test()
48 easy_setopt(cl, CURLOPT_URL, URL2); in test()
49 res = curl_easy_perform(cl); in test()
52 curl_easy_cleanup(cl); in test()