comparison libmpdemux/url.h @ 3040:9fad4017ec37

Added a function to copy URL.
author bertrand
date Tue, 20 Nov 2001 22:15:32 +0000
parents 9e059416eea6
children 5c8a533dfa09
comparison
equal deleted inserted replaced
3039:80189681c02b 3040:9fad4017ec37
16 char *username; 16 char *username;
17 char *password; 17 char *password;
18 } URL_t; 18 } URL_t;
19 19
20 URL_t* url_new(char* url); 20 URL_t* url_new(char* url);
21 URL_t* url_copy(URL_t* url);
21 void url_free(URL_t* url); 22 void url_free(URL_t* url);
22 23
23 #endif 24 #endif