1 /* $Id: res.h,v 1.10 2006-08-14 10:40:14 adam Exp $
2 Copyright (C) 1995-2006
5 This file is part of the Zebra server.
7 Zebra is free software; you can redistribute it and/or modify it under
8 the terms of the GNU General Public License as published by the Free
9 Software Foundation; either version 2, or (at your option) any later
12 Zebra is distributed in the hope that it will be useful, but WITHOUT ANY
13 WARRANTY; without even the implied warranty of MERCHANTABILITY or
14 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
17 You should have received a copy of the GNU General Public License
18 along with this program; if not, write to the Free Software
19 Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
26 #include <idzebra/util.h>
30 typedef struct res_struct *Res;
33 Res res_open(Res res_def, Res over_res);
36 void res_close(Res r);
39 ZEBRA_RES res_read_file(Res r, const char *fname);
42 ZEBRA_RES res_write_file(Res r, const char *fname);
45 void res_clear(Res r);
48 const char *res_get(Res r, const char *name);
51 const char *res_get_def(Res r, const char *name, const char *def);
54 int res_get_match(Res r, const char *name, const char *value, const char *s);
57 void res_set(Res r, const char *name, const char *value);
60 int res_trav(Res r, const char *prefix, void *p,
61 void (*f)(void *p, const char *name, const char *value));
64 const char *res_get_prefix(Res r, const char *name, const char *prefix,
68 ZEBRA_RES res_get_int(Res r, const char *name, int *val);
71 /* == pop ================================================================= */
74 Res res_add_over (Res p, Res t);
77 void res_remove_over (Res r);
80 void res_close_over (Res r);
83 void res_add (Res r, const char *name, const char *value);
86 char **res_2_array (Res r);
89 char **res_get_array(Res r, const char* name);
92 void res_dump (Res r, int level);
100 * indent-tabs-mode: nil
102 * vim: shiftwidth=4 tabstop=8 expandtab