diff --git a/example.c b/example.c index 5fe5e70..13f44a0 100644 --- a/example.c +++ b/example.c @@ -8,7 +8,9 @@ int main(int argc, char *argv[]) { CURLcode ret; CURL *hnd; - hnd = curl_easy_init(); + printf("Hello, World!\n"); + + // hnd = curl_easy_init(); // curl_easy_setopt(hnd, CURLOPT_BUFFERSIZE, 102400L); // curl_easy_setopt(hnd, CURLOPT_URL, "http://example.com"); // curl_easy_setopt(hnd, CURLOPT_NOPROGRESS, 1L); @@ -41,9 +43,9 @@ int main(int argc, char *argv[]) { // fprintf(stderr, "curl_easy_perform() failed: %s\n", curl_easy_strerror(ret)); // } - curl_easy_cleanup(hnd); - hnd = NULL; + // curl_easy_cleanup(hnd); + // hnd = NULL; - return (int)ret; + // return (int)ret; } /**** End of sample code ****/