comparison libmpdemux/url.h @ 4653:d2a7fcfeec6f

Removed the url_copy function , since it was badly implemented, and a url_new can do the job.
author bertrand
date Mon, 11 Feb 2002 05:19:11 +0000
parents 639b3b47b138
children 1d9f22a32d98
comparison
equal deleted inserted replaced
4652:17cf55182029 4653:d2a7fcfeec6f
18 char *username; 18 char *username;
19 char *password; 19 char *password;
20 } URL_t; 20 } URL_t;
21 21
22 URL_t* url_new(char* url); 22 URL_t* url_new(char* url);
23 URL_t* url_copy(URL_t* url);
24 void url_free(URL_t* url); 23 void url_free(URL_t* url);
25 24
26 void url_unescape_string(char *outbuf, char *inbuf); 25 void url_unescape_string(char *outbuf, char *inbuf);
27 void url_escape_string(char *outbuf, char *inbuf); 26 void url_escape_string(char *outbuf, char *inbuf);
28 27