This repository has been archived on 2025-05-11. You can view files and clone it, but cannot push or open issues or pull requests.
brwsh/url.h
2021-11-11 17:22:17 +01:00

20 lines
274 B
C

#ifndef _URL_H
#define _URL_H
typedef struct _url {
char *fullname;
char *scheme;
char *net_path;
char *abs_path;
char *net_node; // just the domain
char *net_service; // http, port number
} url_t;
void url_free(url_t *);
url_t *url_parse(const char *);
#endif