Skip to content
Snippets Groups Projects
Commit a547f3a2 authored by Daniel Stenberg's avatar Daniel Stenberg
Browse files

moved the url.c prototypes to here

parent db9bb922
No related branches found
No related tags found
No related merge requests found
......@@ -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
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment