lib501.c 267 B

123456789101112131415
  1. #include "test.h"
  2. int test(char *URL)
  3. {
  4. CURLcode res;
  5. CURL *curl = curl_easy_init();
  6. (void)URL; /* we don't use this */
  7. curl_easy_setopt(curl, CURLOPT_HEADER, TRUE);
  8. res = curl_easy_perform(curl);
  9. curl_easy_cleanup(curl);
  10. return res;
  11. }