diff options
author | Daniel Stenberg <daniel@haxx.se> | 2001-08-15 06:53:34 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2001-08-15 06:53:34 +0000 |
commit | a547f3a21eb9aaaedca0de8db61d07e4db69a5a9 (patch) | |
tree | bc4134ecd3a3f82d12e98bd047d5fefff07916a4 /lib | |
parent | db9bb9221f4364ad4c9eb93796a30215f4f11d98 (diff) |
moved the url.c prototypes to here
Diffstat (limited to 'lib')
-rw-r--r-- | lib/url.h | 14 |
1 files changed, 13 insertions, 1 deletions
@@ -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 |