]> CyberLeo.Net >> Repos - FreeBSD/releng/7.2.git/blob - contrib/bind9/lib/isccc/include/isccc/alist.h
Create releng/7.2 from stable/7 in preparation for 7.2-RELEASE.
[FreeBSD/releng/7.2.git] / contrib / bind9 / lib / isccc / include / isccc / alist.h
1 /*
2  * Portions Copyright (C) 2004, 2005  Internet Systems Consortium, Inc. ("ISC")
3  * Portions Copyright (C) 2001  Internet Software Consortium.
4  * Portions Copyright (C) 2001  Nominum, Inc.
5  *
6  * Permission to use, copy, modify, and distribute this software for any
7  * purpose with or without fee is hereby granted, provided that the above
8  * copyright notice and this permission notice appear in all copies.
9  *
10  * THE SOFTWARE IS PROVIDED "AS IS" AND ISC AND NOMINUM DISCLAIMS ALL
11  * WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES
12  * OF MERCHANTABILITY AND FITNESS.  IN NO EVENT SHALL ISC BE LIABLE FOR ANY
13  * SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
14  * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
15  * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
16  * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
17  */
18
19 /* $Id: alist.h,v 1.3.18.2 2005/04/29 00:17:12 marka Exp $ */
20
21 #ifndef ISCCC_ALIST_H
22 #define ISCCC_ALIST_H 1
23
24 /*! \file */
25
26 #include <stdio.h>
27
28 #include <isc/lang.h>
29 #include <isccc/types.h>
30
31 ISC_LANG_BEGINDECLS
32
33 isccc_sexpr_t *
34 isccc_alist_create(void);
35
36 isc_boolean_t
37 isccc_alist_alistp(isccc_sexpr_t *alist);
38
39 isc_boolean_t
40 isccc_alist_emptyp(isccc_sexpr_t *alist);
41
42 isccc_sexpr_t *
43 isccc_alist_first(isccc_sexpr_t *alist);
44
45 isccc_sexpr_t *
46 isccc_alist_assq(isccc_sexpr_t *alist, const char *key);
47
48 void
49 isccc_alist_delete(isccc_sexpr_t *alist, const char *key);
50
51 isccc_sexpr_t *
52 isccc_alist_define(isccc_sexpr_t *alist, const char *key, isccc_sexpr_t *value);
53
54 isccc_sexpr_t *
55 isccc_alist_definestring(isccc_sexpr_t *alist, const char *key, const char *str);
56
57 isccc_sexpr_t *
58 isccc_alist_definebinary(isccc_sexpr_t *alist, const char *key, isccc_region_t *r);
59
60 isccc_sexpr_t *
61 isccc_alist_lookup(isccc_sexpr_t *alist, const char *key);
62
63 isc_result_t
64 isccc_alist_lookupstring(isccc_sexpr_t *alist, const char *key, char **strp);
65
66 isc_result_t
67 isccc_alist_lookupbinary(isccc_sexpr_t *alist, const char *key, isccc_region_t **r);
68
69 void
70 isccc_alist_prettyprint(isccc_sexpr_t *sexpr, unsigned int indent, FILE *stream);
71
72 ISC_LANG_ENDDECLS
73
74 #endif /* ISCCC_ALIST_H */