view url.h @ 839:b7fdf669fe84

savage4 info updated
author gabucino
date Sat, 19 May 2001 10:51:42 +0000
parents b8cecdc0c67f
children 9141234715a2
line wrap: on
line source

#ifndef URL_H
#define URL_H

typedef struct {
	char *url;
	char *protocol;
	char *hostname;
	char *path;
	unsigned int port;
} URL_t;

URL_t* set_url(char* url);
void   free_url(URL_t* url);

#endif