]> granicus.if.org Git - curl/commitdiff
moved the url.c prototypes to here
authorDaniel Stenberg <daniel@haxx.se>
Wed, 15 Aug 2001 06:53:34 +0000 (06:53 +0000)
committerDaniel Stenberg <daniel@haxx.se>
Wed, 15 Aug 2001 06:53:34 +0000 (06:53 +0000)
lib/url.h

index d2c80027b94b5b276431b4d982e6bd26800663d9..d710c74c8bcfc75e0504c39d054a074c71c39a83 100644 (file)
--- a/lib/url.h
+++ b/lib/url.h
  * $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