blob: 2d7ae89eb812d677f256c56a91573163537ebcf9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#ifndef URL_H
#define URL_H
typedef struct {
char *url;
char *protocol;
char *hostname;
char *file;
unsigned int port;
} URL_t;
URL_t* set_url(char* url);
void free_url(URL_t* url);
#endif
|