summaryrefslogtreecommitdiff
path: root/include/curl/easy.h
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2000-09-07 11:34:08 +0000
committerDaniel Stenberg <daniel@haxx.se>2000-09-07 11:34:08 +0000
commit74be53a577e5fefb152312667c9c9f2446ccf11d (patch)
treefa2fb8814f9c676116d528336bb816e2c211a3d5 /include/curl/easy.h
parent5e7cd528b08d6c57220cfe1a307a0d92c02daca2 (diff)
downloadcurl-74be53a577e5fefb152312667c9c9f2446ccf11d.tar.gz
C++ adjusted
Diffstat (limited to 'include/curl/easy.h')
-rw-r--r--include/curl/easy.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/include/curl/easy.h b/include/curl/easy.h
index 687696c2c..de7bccef7 100644
--- a/include/curl/easy.h
+++ b/include/curl/easy.h
@@ -39,8 +39,17 @@
*
* ------------------------------------------------------------
****************************************************************************/
+#ifdef __cplusplus
+extern "C" {
+#endif
+
CURL *curl_easy_init(void);
CURLcode curl_easy_setopt(CURL *curl, CURLoption option, ...);
CURLcode curl_easy_perform(CURL *curl);
void curl_easy_cleanup(CURL *curl);
+
+#ifdef __cplusplus
+}
+#endif
+
#endif