File: url.e

package info (click to toggle)
html-xml-utils 7.7-1.3
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 2,540 kB
  • sloc: ansic: 11,213; sh: 7,996; lex: 243; makefile: 192; yacc: 125
file content (17 lines) | stat: -rw-r--r-- 480 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
typedef struct {
  string full;
  string proto;
  string user;
  string password;
  string machine;
  string port;
  string path;
  string query;
  string fragment;
} *URL;
extern void URL_dispose(URL url);
extern URL URL_new(const conststring url);
extern URL URL_absolutize(const URL base, const URL url);
extern string URL_s_absolutize(const conststring base, const conststring url);
extern URL URL_to_ascii(const URL iri);
extern string URL_s_to_ascii(const conststring iri);