#include <stdio.h>
#include "curl/curl.h"

int main(int argc, char *argv[]){
	CURL *curl;
	CURLcode res;

	curl = curl_easy_init();
	if(curl) {
		curl_easy_setopt(curl, CURLOPT_URL, "www.etoys.com/HelpSectionTitlesAndUrls.html");
		curl_easy_setopt(curl, CURLOPT_USERAGENT, "dude");
		curl_easy_setopt(curl, CURLOPT_COOKIE, "");

		res = curl_easy_perform(curl);

		/* always cleanup */
		curl_easy_cleanup(curl);
	}
	return 0;
}