mirror of
https://github.com/ENSL/NS.git
synced 2024-12-04 02:01:11 +00:00
a6f04d2ca3
git-svn-id: https://unknownworlds.svn.cloudforge.com/ns1@4 67975925-1194-0748-b3d5-c16f83f1a3a1
13 lines
266 B
C
13 lines
266 B
C
#include "test.h"
|
|
|
|
CURLcode test(char *URL)
|
|
{
|
|
CURLcode res;
|
|
CURL *curl = curl_easy_init();
|
|
curl_easy_setopt(curl, CURLOPT_URL, URL);
|
|
curl_easy_setopt(curl, CURLOPT_HEADER, TRUE);
|
|
res = curl_easy_perform(curl);
|
|
curl_easy_cleanup(curl);
|
|
return res;
|
|
}
|
|
|