You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

10 lines
168 B
C

typedef struct URL_s URL;
URL* new_url(char* url);
char* get_schema(URL* url);
char* get_hostname(URL* url);
char* get_port(URL* url);
char* get_filepath(URL* url);