From a547f3a21eb9aaaedca0de8db61d07e4db69a5a9 Mon Sep 17 00:00:00 2001 From: Daniel Stenberg Date: Wed, 15 Aug 2001 06:53:34 +0000 Subject: moved the url.c prototypes to here --- lib/url.h | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/lib/url.h b/lib/url.h index d2c80027b..d710c74c8 100644 --- a/lib/url.h +++ b/lib/url.h @@ -23,6 +23,18 @@ * $Id$ *****************************************************************************/ -/* empty */ +/* + * Prototypes for library-wide functions provided by url.c + */ + +CURLcode Curl_open(struct UrlData **curl); +CURLcode Curl_setopt(struct UrlData *data, CURLoption option, ...); +CURLcode Curl_close(struct UrlData *data); /* the opposite of curl_open() */ +CURLcode Curl_connect(struct UrlData *, + struct connectdata **, + bool allow_port); +CURLcode Curl_do(struct connectdata *); +CURLcode Curl_done(struct connectdata *); +CURLcode Curl_disconnect(struct connectdata *); #endif -- cgit v1.2.3