mirror of
https://github.com/moparisthebest/curl
synced 2024-11-07 10:05:06 -05:00
27 lines
510 B
C
27 lines
510 B
C
|
#include <stdio.h>
|
||
|
|
||
|
#include <curl/curl.h>
|
||
|
#include <curl/types.h>
|
||
|
#include <curl/easy.h>
|
||
|
|
||
|
int main(int argc, char **argv)
|
||
|
{
|
||
|
CURL *curl;
|
||
|
CURLcode res;
|
||
|
FILE *headerfile;
|
||
|
|
||
|
headerfile = fopen("dumpit", "w");
|
||
|
|
||
|
curl = curl_easy_init();
|
||
|
if(curl) {
|
||
|
/* what call to write: */
|
||
|
curl_easy_setopt(curl, CURLOPT_URL, "curl.haxx.se");
|
||
|
curl_easy_setopt(curl, CURLOPT_WRITEHEADER, headerfile);
|
||
|
res = curl_easy_perform(curl);
|
||
|
|
||
|
/* always cleanup */
|
||
|
curl_easy_cleanup(curl);
|
||
|
}
|
||
|
return 0;
|
||
|
}
|