You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
mxe/src/curl-test.c

25 lines
398 B

/*
* This file is part of MXE. See LICENSE.md for licensing information.
*/
#include <curl/curl.h>
int main(int argc, char *argv[])
{
CURL *curl;
(void)argc;
(void)argv;
curl = curl_easy_init();
if (!curl) {
return 1;
}
curl_easy_setopt(curl, CURLOPT_URL, "http://example.com/");
curl_easy_perform(curl);
curl_easy_cleanup(curl);
return 0;
}