Git init
[external/libiri.git] / include / iri.h
1 /*
2  * libiri: An IRI/URI/URL parsing library
3  * @(#) $Id$
4  */
5
6 /*
7  * Copyright (c) 2005, 2008 Mo McRoberts.
8  *
9  * Redistribution and use in source and binary forms, with or without
10  * modification, are permitted provided that the following conditions
11  * are met:
12  * 1. Redistributions of source code must retain the above copyright
13  * notice, this list of conditions and the following disclaimer.
14  * 2. Redistributions in binary form must reproduce the above copyright
15  * notice, this list of conditions and the following disclaimer in the
16  * documentation and/or other materials provided with the distribution.
17  * 3. The names of the author(s) of this software may not be used to endorse
18  * or promote products derived from this software without specific prior
19  * written permission.
20  *
21  * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, 
22  * INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY 
23  * AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL
24  * AUTHORS OF THIS SOFTWARE BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
25  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED
26  * TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
27  * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF 
28  * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
29  * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS 
30  * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
31  */
32
33 #ifndef IRI_H_
34 # define IRI_H_                        1
35
36 # if !defined(LIBIRI_INTERNAL)
37 typedef struct iri_struct iri_t;
38 # endif
39
40 struct iri_struct
41 {
42         const char *display;
43         const char *scheme;
44         const char *user;
45         const char *auth;
46         const char *password;
47         const char *host;
48         int port;
49         const char *path;
50         const char *query;
51         const char *anchor;
52         const char **qparams;
53         const char **schemelist;
54         size_t nschemes;
55 };
56
57 # undef EXTERNC_
58 # if defined(__cplusplus)
59 #  define EXTERNC_                     extern "C"
60 # else
61 #  define EXTERNC_                     extern
62 # endif
63
64 EXTERNC_ iri_t *iri_parse(const char *src);
65 EXTERNC_ void iri_destroy(iri_t *iri);
66 EXTERNC_ iri_t *iri_dup(iri_t *iri);
67
68 #endif /* !IRI_H_ */