Added simple string map (hash) utility.
[idzebra-moved-to-github.git] / include / zebra_strmap.h
1 /* $Id: zebra_strmap.h,v 1.1 2007-12-02 11:30:28 adam Exp $
2    Copyright (C) 1995-2007
3    Index Data ApS
4
5 This file is part of the Zebra server.
6
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
10 version.
11
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
15 for more details.
16
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
20
21 */
22
23 #ifndef ZEBRA_STRMAP_H
24 #define ZEBRA_STRMAP_H
25
26 #include <yaz/yconfig.h>
27 #include <stddef.h>
28 YAZ_BEGIN_CDECL
29
30 typedef struct zebra_strmap *zebra_strmap_t;
31
32 YAZ_EXPORT
33 zebra_strmap_t zebra_strmap_create(void);
34
35 YAZ_EXPORT
36 void zebra_strmap_destroy(zebra_strmap_t st);
37
38 YAZ_EXPORT
39 void zebra_strmap_add(zebra_strmap_t st, const char *name,
40                       void *data_buf, size_t data_len);
41
42 YAZ_EXPORT
43 void *zebra_strmap_lookup(zebra_strmap_t st, const char *name, int no,
44                           size_t *data_len);
45
46 YAZ_EXPORT
47 int zebra_strmap_remove(zebra_strmap_t st, const char *name);
48
49 YAZ_END_CDECL
50
51 #endif
52 /*
53  * Local variables:
54  * c-basic-offset: 4
55  * indent-tabs-mode: nil
56  * End:
57  * vim: shiftwidth=4 tabstop=8 expandtab
58  */
59