simple.c
上传用户:coffee44
上传日期:2018-10-23
资源大小:12304k
文件大小:1k
源码类别:

TAPI编程

开发平台:

Visual C++

  1. /*****************************************************************************
  2.  *                                  _   _ ____  _
  3.  *  Project                     ___| | | |  _ | |
  4.  *                             / __| | | | |_) | |
  5.  *                            | (__| |_| |  _ <| |___
  6.  *                             ___|___/|_| ______|
  7.  *
  8.  * $Id: simple.c,v 1.6 2004-08-23 14:22:52 bagder Exp $
  9.  */
  10. #include <stdio.h>
  11. #include <curl/curl.h>
  12. int main(void)
  13. {
  14.   CURL *curl;
  15.   CURLcode res;
  16.   curl = curl_easy_init();
  17.   if(curl) {
  18.     curl_easy_setopt(curl, CURLOPT_URL, "curl.haxx.se");
  19.     res = curl_easy_perform(curl);
  20.     /* always cleanup */
  21.     curl_easy_cleanup(curl);
  22.   }
  23.   return 0;
  24. }