Fri, 06 Sep 2013 17:01:53 +0200
fixed makefiles
2
79646375a420
Added some source files
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
1 | /* |
103
08018864fb91
added license and copyright notice to all files
Mike Becker <universe@uap-core.de>
parents:
95
diff
changeset
|
2 | * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER. |
08018864fb91
added license and copyright notice to all files
Mike Becker <universe@uap-core.de>
parents:
95
diff
changeset
|
3 | * |
08018864fb91
added license and copyright notice to all files
Mike Becker <universe@uap-core.de>
parents:
95
diff
changeset
|
4 | * Copyright 2013 Olaf Wintermann. All rights reserved. |
08018864fb91
added license and copyright notice to all files
Mike Becker <universe@uap-core.de>
parents:
95
diff
changeset
|
5 | * |
08018864fb91
added license and copyright notice to all files
Mike Becker <universe@uap-core.de>
parents:
95
diff
changeset
|
6 | * Redistribution and use in source and binary forms, with or without |
08018864fb91
added license and copyright notice to all files
Mike Becker <universe@uap-core.de>
parents:
95
diff
changeset
|
7 | * modification, are permitted provided that the following conditions are met: |
08018864fb91
added license and copyright notice to all files
Mike Becker <universe@uap-core.de>
parents:
95
diff
changeset
|
8 | * |
08018864fb91
added license and copyright notice to all files
Mike Becker <universe@uap-core.de>
parents:
95
diff
changeset
|
9 | * 1. Redistributions of source code must retain the above copyright |
08018864fb91
added license and copyright notice to all files
Mike Becker <universe@uap-core.de>
parents:
95
diff
changeset
|
10 | * notice, this list of conditions and the following disclaimer. |
08018864fb91
added license and copyright notice to all files
Mike Becker <universe@uap-core.de>
parents:
95
diff
changeset
|
11 | * |
08018864fb91
added license and copyright notice to all files
Mike Becker <universe@uap-core.de>
parents:
95
diff
changeset
|
12 | * 2. Redistributions in binary form must reproduce the above copyright |
08018864fb91
added license and copyright notice to all files
Mike Becker <universe@uap-core.de>
parents:
95
diff
changeset
|
13 | * notice, this list of conditions and the following disclaimer in the |
08018864fb91
added license and copyright notice to all files
Mike Becker <universe@uap-core.de>
parents:
95
diff
changeset
|
14 | * documentation and/or other materials provided with the distribution. |
08018864fb91
added license and copyright notice to all files
Mike Becker <universe@uap-core.de>
parents:
95
diff
changeset
|
15 | * |
08018864fb91
added license and copyright notice to all files
Mike Becker <universe@uap-core.de>
parents:
95
diff
changeset
|
16 | * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" |
08018864fb91
added license and copyright notice to all files
Mike Becker <universe@uap-core.de>
parents:
95
diff
changeset
|
17 | * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
08018864fb91
added license and copyright notice to all files
Mike Becker <universe@uap-core.de>
parents:
95
diff
changeset
|
18 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
08018864fb91
added license and copyright notice to all files
Mike Becker <universe@uap-core.de>
parents:
95
diff
changeset
|
19 | * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE |
08018864fb91
added license and copyright notice to all files
Mike Becker <universe@uap-core.de>
parents:
95
diff
changeset
|
20 | * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR |
08018864fb91
added license and copyright notice to all files
Mike Becker <universe@uap-core.de>
parents:
95
diff
changeset
|
21 | * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF |
08018864fb91
added license and copyright notice to all files
Mike Becker <universe@uap-core.de>
parents:
95
diff
changeset
|
22 | * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS |
08018864fb91
added license and copyright notice to all files
Mike Becker <universe@uap-core.de>
parents:
95
diff
changeset
|
23 | * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN |
08018864fb91
added license and copyright notice to all files
Mike Becker <universe@uap-core.de>
parents:
95
diff
changeset
|
24 | * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) |
08018864fb91
added license and copyright notice to all files
Mike Becker <universe@uap-core.de>
parents:
95
diff
changeset
|
25 | * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE |
08018864fb91
added license and copyright notice to all files
Mike Becker <universe@uap-core.de>
parents:
95
diff
changeset
|
26 | * POSSIBILITY OF SUCH DAMAGE. |
2
79646375a420
Added some source files
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
27 | */ |
79646375a420
Added some source files
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
28 | |
136
b798f2eed26a
started documentation of map.h + renamed allocator version of ucx_map_new
Mike Becker <universe@uap-core.de>
parents:
120
diff
changeset
|
29 | /** |
b798f2eed26a
started documentation of map.h + renamed allocator version of ucx_map_new
Mike Becker <universe@uap-core.de>
parents:
120
diff
changeset
|
30 | * @file map.h |
b798f2eed26a
started documentation of map.h + renamed allocator version of ucx_map_new
Mike Becker <universe@uap-core.de>
parents:
120
diff
changeset
|
31 | * |
b798f2eed26a
started documentation of map.h + renamed allocator version of ucx_map_new
Mike Becker <universe@uap-core.de>
parents:
120
diff
changeset
|
32 | * Hash map implementation. |
b798f2eed26a
started documentation of map.h + renamed allocator version of ucx_map_new
Mike Becker <universe@uap-core.de>
parents:
120
diff
changeset
|
33 | * |
b798f2eed26a
started documentation of map.h + renamed allocator version of ucx_map_new
Mike Becker <universe@uap-core.de>
parents:
120
diff
changeset
|
34 | * This implementation uses murmur hash 2 and separate chaining with linked |
b798f2eed26a
started documentation of map.h + renamed allocator version of ucx_map_new
Mike Becker <universe@uap-core.de>
parents:
120
diff
changeset
|
35 | * lists. |
b798f2eed26a
started documentation of map.h + renamed allocator version of ucx_map_new
Mike Becker <universe@uap-core.de>
parents:
120
diff
changeset
|
36 | * |
b798f2eed26a
started documentation of map.h + renamed allocator version of ucx_map_new
Mike Becker <universe@uap-core.de>
parents:
120
diff
changeset
|
37 | * @author Mike Becker |
b798f2eed26a
started documentation of map.h + renamed allocator version of ucx_map_new
Mike Becker <universe@uap-core.de>
parents:
120
diff
changeset
|
38 | * @author Olaf Wintermann |
b798f2eed26a
started documentation of map.h + renamed allocator version of ucx_map_new
Mike Becker <universe@uap-core.de>
parents:
120
diff
changeset
|
39 | */ |
b798f2eed26a
started documentation of map.h + renamed allocator version of ucx_map_new
Mike Becker <universe@uap-core.de>
parents:
120
diff
changeset
|
40 | |
120 | 41 | #ifndef UCX_MAP_H |
42 | #define UCX_MAP_H | |
2
79646375a420
Added some source files
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
43 | |
20
db7d9860dbbd
added some map functions
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
2
diff
changeset
|
44 | #include "ucx.h" |
db7d9860dbbd
added some map functions
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
2
diff
changeset
|
45 | #include "string.h" |
114
5a0859739b76
added doxyfile and documentation for ucx.h
Mike Becker <universe@uap-core.de>
parents:
112
diff
changeset
|
46 | #include "allocator.h" |
41
7f90a03e186e
simplified UCX_MAP_FOREACH
Mike Becker <universe@uap-core.de>
parents:
38
diff
changeset
|
47 | #include <stdio.h> |
20
db7d9860dbbd
added some map functions
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
2
diff
changeset
|
48 | |
2
79646375a420
Added some source files
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
49 | #ifdef __cplusplus |
79646375a420
Added some source files
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
50 | extern "C" { |
79646375a420
Added some source files
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
51 | #endif |
79646375a420
Added some source files
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
52 | |
138
7800811078b8
documented map.h + changed return value of ucx_map_iter_next()
Mike Becker <universe@uap-core.de>
parents:
136
diff
changeset
|
53 | /** |
7800811078b8
documented map.h + changed return value of ucx_map_iter_next()
Mike Becker <universe@uap-core.de>
parents:
136
diff
changeset
|
54 | * Loop statement for UCX maps. |
7800811078b8
documented map.h + changed return value of ucx_map_iter_next()
Mike Becker <universe@uap-core.de>
parents:
136
diff
changeset
|
55 | * |
7800811078b8
documented map.h + changed return value of ucx_map_iter_next()
Mike Becker <universe@uap-core.de>
parents:
136
diff
changeset
|
56 | * The <code>key</code> variable is implicitly defined, but the |
7800811078b8
documented map.h + changed return value of ucx_map_iter_next()
Mike Becker <universe@uap-core.de>
parents:
136
diff
changeset
|
57 | * <code>value</code> variable must be already declared as type information |
7800811078b8
documented map.h + changed return value of ucx_map_iter_next()
Mike Becker <universe@uap-core.de>
parents:
136
diff
changeset
|
58 | * cannot be inferred. |
7800811078b8
documented map.h + changed return value of ucx_map_iter_next()
Mike Becker <universe@uap-core.de>
parents:
136
diff
changeset
|
59 | * |
7800811078b8
documented map.h + changed return value of ucx_map_iter_next()
Mike Becker <universe@uap-core.de>
parents:
136
diff
changeset
|
60 | * @param key the variable name for the key |
7800811078b8
documented map.h + changed return value of ucx_map_iter_next()
Mike Becker <universe@uap-core.de>
parents:
136
diff
changeset
|
61 | * @param value the variable name for the value |
7800811078b8
documented map.h + changed return value of ucx_map_iter_next()
Mike Becker <universe@uap-core.de>
parents:
136
diff
changeset
|
62 | * @param iter an UcxMapIterator |
7800811078b8
documented map.h + changed return value of ucx_map_iter_next()
Mike Becker <universe@uap-core.de>
parents:
136
diff
changeset
|
63 | * @see ucx_map_iterator() |
7800811078b8
documented map.h + changed return value of ucx_map_iter_next()
Mike Becker <universe@uap-core.de>
parents:
136
diff
changeset
|
64 | */ |
7800811078b8
documented map.h + changed return value of ucx_map_iter_next()
Mike Becker <universe@uap-core.de>
parents:
136
diff
changeset
|
65 | #define UCX_MAP_FOREACH(key,value,iter) \ |
7800811078b8
documented map.h + changed return value of ucx_map_iter_next()
Mike Becker <universe@uap-core.de>
parents:
136
diff
changeset
|
66 | for(UcxKey key;ucx_map_iter_next(&iter,&key, (void**)&value);) |
31
91ac86557290
added map iterator
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
30
diff
changeset
|
67 | |
138
7800811078b8
documented map.h + changed return value of ucx_map_iter_next()
Mike Becker <universe@uap-core.de>
parents:
136
diff
changeset
|
68 | /** Type for the UCX map. @see UcxMap */ |
31
91ac86557290
added map iterator
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
30
diff
changeset
|
69 | typedef struct UcxMap UcxMap; |
146
aa376dba1ba8
fixed documentation for netbeans parser + added sstrprefix() and sstrsuffix()
Mike Becker <universe@uap-core.de>
parents:
139
diff
changeset
|
70 | |
138
7800811078b8
documented map.h + changed return value of ucx_map_iter_next()
Mike Becker <universe@uap-core.de>
parents:
136
diff
changeset
|
71 | /** Type for a key of an UcxMap. @see UcxKey */ |
31
91ac86557290
added map iterator
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
30
diff
changeset
|
72 | typedef struct UcxKey UcxKey; |
146
aa376dba1ba8
fixed documentation for netbeans parser + added sstrprefix() and sstrsuffix()
Mike Becker <universe@uap-core.de>
parents:
139
diff
changeset
|
73 | |
138
7800811078b8
documented map.h + changed return value of ucx_map_iter_next()
Mike Becker <universe@uap-core.de>
parents:
136
diff
changeset
|
74 | /** Type for an element of an UcxMap. @see UcxMapElement */ |
31
91ac86557290
added map iterator
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
30
diff
changeset
|
75 | typedef struct UcxMapElement UcxMapElement; |
146
aa376dba1ba8
fixed documentation for netbeans parser + added sstrprefix() and sstrsuffix()
Mike Becker <universe@uap-core.de>
parents:
139
diff
changeset
|
76 | |
138
7800811078b8
documented map.h + changed return value of ucx_map_iter_next()
Mike Becker <universe@uap-core.de>
parents:
136
diff
changeset
|
77 | /** Type for an iterator over an UcxMap. @see UcxMapIterator */ |
31
91ac86557290
added map iterator
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
30
diff
changeset
|
78 | typedef struct UcxMapIterator UcxMapIterator; |
20
db7d9860dbbd
added some map functions
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
2
diff
changeset
|
79 | |
138
7800811078b8
documented map.h + changed return value of ucx_map_iter_next()
Mike Becker <universe@uap-core.de>
parents:
136
diff
changeset
|
80 | /** Structure for the UCX map. */ |
20
db7d9860dbbd
added some map functions
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
2
diff
changeset
|
81 | struct UcxMap { |
138
7800811078b8
documented map.h + changed return value of ucx_map_iter_next()
Mike Becker <universe@uap-core.de>
parents:
136
diff
changeset
|
82 | /** An allocator that is used for the map elements. */ |
107
86b19c98b5fd
map uses an allocator
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
103
diff
changeset
|
83 | UcxAllocator *allocator; |
138
7800811078b8
documented map.h + changed return value of ucx_map_iter_next()
Mike Becker <universe@uap-core.de>
parents:
136
diff
changeset
|
84 | /** The array of map element lists. */ |
29
bce0d7f2912b
fixed map with the help of new tests
Mike Becker <universe@uap-core.de>
parents:
20
diff
changeset
|
85 | UcxMapElement **map; |
138
7800811078b8
documented map.h + changed return value of ucx_map_iter_next()
Mike Becker <universe@uap-core.de>
parents:
136
diff
changeset
|
86 | /** The size of the map is the length of the element list array. */ |
20
db7d9860dbbd
added some map functions
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
2
diff
changeset
|
87 | size_t size; |
138
7800811078b8
documented map.h + changed return value of ucx_map_iter_next()
Mike Becker <universe@uap-core.de>
parents:
136
diff
changeset
|
88 | /** The count of elements currently stored in this map. */ |
45
dd03226c1a6b
map counts elements
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
44
diff
changeset
|
89 | size_t count; |
20
db7d9860dbbd
added some map functions
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
2
diff
changeset
|
90 | }; |
db7d9860dbbd
added some map functions
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
2
diff
changeset
|
91 | |
138
7800811078b8
documented map.h + changed return value of ucx_map_iter_next()
Mike Becker <universe@uap-core.de>
parents:
136
diff
changeset
|
92 | /** Structure for a key of an UcxMap. */ |
20
db7d9860dbbd
added some map functions
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
2
diff
changeset
|
93 | struct UcxKey { |
138
7800811078b8
documented map.h + changed return value of ucx_map_iter_next()
Mike Becker <universe@uap-core.de>
parents:
136
diff
changeset
|
94 | /** The key data. */ |
20
db7d9860dbbd
added some map functions
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
2
diff
changeset
|
95 | void *data; |
138
7800811078b8
documented map.h + changed return value of ucx_map_iter_next()
Mike Becker <universe@uap-core.de>
parents:
136
diff
changeset
|
96 | /** The length of the key data. */ |
20
db7d9860dbbd
added some map functions
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
2
diff
changeset
|
97 | size_t len; |
138
7800811078b8
documented map.h + changed return value of ucx_map_iter_next()
Mike Becker <universe@uap-core.de>
parents:
136
diff
changeset
|
98 | /** The hash value of the key data. */ |
20
db7d9860dbbd
added some map functions
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
2
diff
changeset
|
99 | int hash; |
db7d9860dbbd
added some map functions
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
2
diff
changeset
|
100 | }; |
db7d9860dbbd
added some map functions
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
2
diff
changeset
|
101 | |
138
7800811078b8
documented map.h + changed return value of ucx_map_iter_next()
Mike Becker <universe@uap-core.de>
parents:
136
diff
changeset
|
102 | /** Structure for an element of an UcxMap. */ |
20
db7d9860dbbd
added some map functions
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
2
diff
changeset
|
103 | struct UcxMapElement { |
138
7800811078b8
documented map.h + changed return value of ucx_map_iter_next()
Mike Becker <universe@uap-core.de>
parents:
136
diff
changeset
|
104 | /** The value data. */ |
20
db7d9860dbbd
added some map functions
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
2
diff
changeset
|
105 | void *data; |
146
aa376dba1ba8
fixed documentation for netbeans parser + added sstrprefix() and sstrsuffix()
Mike Becker <universe@uap-core.de>
parents:
139
diff
changeset
|
106 | |
138
7800811078b8
documented map.h + changed return value of ucx_map_iter_next()
Mike Becker <universe@uap-core.de>
parents:
136
diff
changeset
|
107 | /** A pointer to the next element in the current list. */ |
20
db7d9860dbbd
added some map functions
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
2
diff
changeset
|
108 | UcxMapElement *next; |
146
aa376dba1ba8
fixed documentation for netbeans parser + added sstrprefix() and sstrsuffix()
Mike Becker <universe@uap-core.de>
parents:
139
diff
changeset
|
109 | |
138
7800811078b8
documented map.h + changed return value of ucx_map_iter_next()
Mike Becker <universe@uap-core.de>
parents:
136
diff
changeset
|
110 | /** The corresponding key. */ |
20
db7d9860dbbd
added some map functions
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
2
diff
changeset
|
111 | UcxKey key; |
db7d9860dbbd
added some map functions
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
2
diff
changeset
|
112 | }; |
2
79646375a420
Added some source files
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
113 | |
138
7800811078b8
documented map.h + changed return value of ucx_map_iter_next()
Mike Becker <universe@uap-core.de>
parents:
136
diff
changeset
|
114 | /** Structure for an iterator over an UcxMap. */ |
31
91ac86557290
added map iterator
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
30
diff
changeset
|
115 | struct UcxMapIterator { |
138
7800811078b8
documented map.h + changed return value of ucx_map_iter_next()
Mike Becker <universe@uap-core.de>
parents:
136
diff
changeset
|
116 | /** The map to iterate over. */ |
31
91ac86557290
added map iterator
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
30
diff
changeset
|
117 | UcxMap *map; |
146
aa376dba1ba8
fixed documentation for netbeans parser + added sstrprefix() and sstrsuffix()
Mike Becker <universe@uap-core.de>
parents:
139
diff
changeset
|
118 | |
138
7800811078b8
documented map.h + changed return value of ucx_map_iter_next()
Mike Becker <universe@uap-core.de>
parents:
136
diff
changeset
|
119 | /** The current map element. */ |
31
91ac86557290
added map iterator
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
30
diff
changeset
|
120 | UcxMapElement *cur; |
146
aa376dba1ba8
fixed documentation for netbeans parser + added sstrprefix() and sstrsuffix()
Mike Becker <universe@uap-core.de>
parents:
139
diff
changeset
|
121 | |
138
7800811078b8
documented map.h + changed return value of ucx_map_iter_next()
Mike Becker <universe@uap-core.de>
parents:
136
diff
changeset
|
122 | /** |
7800811078b8
documented map.h + changed return value of ucx_map_iter_next()
Mike Becker <universe@uap-core.de>
parents:
136
diff
changeset
|
123 | * The current index of the element list array. |
7800811078b8
documented map.h + changed return value of ucx_map_iter_next()
Mike Becker <universe@uap-core.de>
parents:
136
diff
changeset
|
124 | * <b>Attention: </b> this is <b>NOT</b> the element index! Do <b>NOT</b> |
7800811078b8
documented map.h + changed return value of ucx_map_iter_next()
Mike Becker <universe@uap-core.de>
parents:
136
diff
changeset
|
125 | * manually iterate over the map by increasing this index. Use |
7800811078b8
documented map.h + changed return value of ucx_map_iter_next()
Mike Becker <universe@uap-core.de>
parents:
136
diff
changeset
|
126 | * ucx_map_iter_next(). |
7800811078b8
documented map.h + changed return value of ucx_map_iter_next()
Mike Becker <universe@uap-core.de>
parents:
136
diff
changeset
|
127 | * @see UcxMap.map*/ |
95 | 128 | size_t index; |
31
91ac86557290
added map iterator
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
30
diff
changeset
|
129 | }; |
91ac86557290
added map iterator
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
30
diff
changeset
|
130 | |
136
b798f2eed26a
started documentation of map.h + renamed allocator version of ucx_map_new
Mike Becker <universe@uap-core.de>
parents:
120
diff
changeset
|
131 | /** |
b798f2eed26a
started documentation of map.h + renamed allocator version of ucx_map_new
Mike Becker <universe@uap-core.de>
parents:
120
diff
changeset
|
132 | * Creates a new hash map with the specified size. |
b798f2eed26a
started documentation of map.h + renamed allocator version of ucx_map_new
Mike Becker <universe@uap-core.de>
parents:
120
diff
changeset
|
133 | * @param size the size of the hash map |
b798f2eed26a
started documentation of map.h + renamed allocator version of ucx_map_new
Mike Becker <universe@uap-core.de>
parents:
120
diff
changeset
|
134 | * @return a pointer to the new hash map |
b798f2eed26a
started documentation of map.h + renamed allocator version of ucx_map_new
Mike Becker <universe@uap-core.de>
parents:
120
diff
changeset
|
135 | */ |
20
db7d9860dbbd
added some map functions
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
2
diff
changeset
|
136 | UcxMap *ucx_map_new(size_t size); |
136
b798f2eed26a
started documentation of map.h + renamed allocator version of ucx_map_new
Mike Becker <universe@uap-core.de>
parents:
120
diff
changeset
|
137 | |
b798f2eed26a
started documentation of map.h + renamed allocator version of ucx_map_new
Mike Becker <universe@uap-core.de>
parents:
120
diff
changeset
|
138 | /** |
b798f2eed26a
started documentation of map.h + renamed allocator version of ucx_map_new
Mike Becker <universe@uap-core.de>
parents:
120
diff
changeset
|
139 | * Creates a new hash map with the specified size using an UcxAllocator. |
137
81a02ad99388
changed parameter order of ucx_map_new_a
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
136
diff
changeset
|
140 | * @param allocator the allocator to use |
136
b798f2eed26a
started documentation of map.h + renamed allocator version of ucx_map_new
Mike Becker <universe@uap-core.de>
parents:
120
diff
changeset
|
141 | * @param size the size of the hash map |
b798f2eed26a
started documentation of map.h + renamed allocator version of ucx_map_new
Mike Becker <universe@uap-core.de>
parents:
120
diff
changeset
|
142 | * @return a pointer to the new hash map |
b798f2eed26a
started documentation of map.h + renamed allocator version of ucx_map_new
Mike Becker <universe@uap-core.de>
parents:
120
diff
changeset
|
143 | */ |
137
81a02ad99388
changed parameter order of ucx_map_new_a
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
136
diff
changeset
|
144 | UcxMap *ucx_map_new_a(UcxAllocator *allocator, size_t size); |
136
b798f2eed26a
started documentation of map.h + renamed allocator version of ucx_map_new
Mike Becker <universe@uap-core.de>
parents:
120
diff
changeset
|
145 | |
b798f2eed26a
started documentation of map.h + renamed allocator version of ucx_map_new
Mike Becker <universe@uap-core.de>
parents:
120
diff
changeset
|
146 | /** |
b798f2eed26a
started documentation of map.h + renamed allocator version of ucx_map_new
Mike Becker <universe@uap-core.de>
parents:
120
diff
changeset
|
147 | * Frees a hash map. |
b798f2eed26a
started documentation of map.h + renamed allocator version of ucx_map_new
Mike Becker <universe@uap-core.de>
parents:
120
diff
changeset
|
148 | * |
b798f2eed26a
started documentation of map.h + renamed allocator version of ucx_map_new
Mike Becker <universe@uap-core.de>
parents:
120
diff
changeset
|
149 | * <b>Note:</b> the contents are <b>not</b> freed, use an UcxMempool for that |
b798f2eed26a
started documentation of map.h + renamed allocator version of ucx_map_new
Mike Becker <universe@uap-core.de>
parents:
120
diff
changeset
|
150 | * purpose. |
b798f2eed26a
started documentation of map.h + renamed allocator version of ucx_map_new
Mike Becker <universe@uap-core.de>
parents:
120
diff
changeset
|
151 | * |
b798f2eed26a
started documentation of map.h + renamed allocator version of ucx_map_new
Mike Becker <universe@uap-core.de>
parents:
120
diff
changeset
|
152 | * @param map the map to be freed |
b798f2eed26a
started documentation of map.h + renamed allocator version of ucx_map_new
Mike Becker <universe@uap-core.de>
parents:
120
diff
changeset
|
153 | */ |
29
bce0d7f2912b
fixed map with the help of new tests
Mike Becker <universe@uap-core.de>
parents:
20
diff
changeset
|
154 | void ucx_map_free(UcxMap *map); |
136
b798f2eed26a
started documentation of map.h + renamed allocator version of ucx_map_new
Mike Becker <universe@uap-core.de>
parents:
120
diff
changeset
|
155 | |
138
7800811078b8
documented map.h + changed return value of ucx_map_iter_next()
Mike Becker <universe@uap-core.de>
parents:
136
diff
changeset
|
156 | /** |
7800811078b8
documented map.h + changed return value of ucx_map_iter_next()
Mike Becker <universe@uap-core.de>
parents:
136
diff
changeset
|
157 | * Copies contents from a map to another map using a copy function. |
7800811078b8
documented map.h + changed return value of ucx_map_iter_next()
Mike Becker <universe@uap-core.de>
parents:
136
diff
changeset
|
158 | * |
7800811078b8
documented map.h + changed return value of ucx_map_iter_next()
Mike Becker <universe@uap-core.de>
parents:
136
diff
changeset
|
159 | * <b>Note:</b> The destination map does not need to be empty. However, if it |
7800811078b8
documented map.h + changed return value of ucx_map_iter_next()
Mike Becker <universe@uap-core.de>
parents:
136
diff
changeset
|
160 | * contains data with keys that are also present in the source map, the contents |
7800811078b8
documented map.h + changed return value of ucx_map_iter_next()
Mike Becker <universe@uap-core.de>
parents:
136
diff
changeset
|
161 | * are overwritten. |
7800811078b8
documented map.h + changed return value of ucx_map_iter_next()
Mike Becker <universe@uap-core.de>
parents:
136
diff
changeset
|
162 | * |
7800811078b8
documented map.h + changed return value of ucx_map_iter_next()
Mike Becker <universe@uap-core.de>
parents:
136
diff
changeset
|
163 | * @param from the source map |
7800811078b8
documented map.h + changed return value of ucx_map_iter_next()
Mike Becker <universe@uap-core.de>
parents:
136
diff
changeset
|
164 | * @param to the destination map |
7800811078b8
documented map.h + changed return value of ucx_map_iter_next()
Mike Becker <universe@uap-core.de>
parents:
136
diff
changeset
|
165 | * @param fnc the copy function or <code>NULL</code> if the pointer address |
7800811078b8
documented map.h + changed return value of ucx_map_iter_next()
Mike Becker <universe@uap-core.de>
parents:
136
diff
changeset
|
166 | * shall be copied |
7800811078b8
documented map.h + changed return value of ucx_map_iter_next()
Mike Becker <universe@uap-core.de>
parents:
136
diff
changeset
|
167 | * @param data additional data for the copy function |
7800811078b8
documented map.h + changed return value of ucx_map_iter_next()
Mike Becker <universe@uap-core.de>
parents:
136
diff
changeset
|
168 | * @return 0 on success or a non-zero value on memory allocation errors |
7800811078b8
documented map.h + changed return value of ucx_map_iter_next()
Mike Becker <universe@uap-core.de>
parents:
136
diff
changeset
|
169 | */ |
67
27e67e725d35
added some qualifiers + removed pointer alias in mergesort
Mike Becker <universe@uap-core.de>
parents:
53
diff
changeset
|
170 | int ucx_map_copy(UcxMap *restrict from, UcxMap *restrict to, |
27e67e725d35
added some qualifiers + removed pointer alias in mergesort
Mike Becker <universe@uap-core.de>
parents:
53
diff
changeset
|
171 | copy_func fnc, void *data); |
138
7800811078b8
documented map.h + changed return value of ucx_map_iter_next()
Mike Becker <universe@uap-core.de>
parents:
136
diff
changeset
|
172 | |
7800811078b8
documented map.h + changed return value of ucx_map_iter_next()
Mike Becker <universe@uap-core.de>
parents:
136
diff
changeset
|
173 | /** |
7800811078b8
documented map.h + changed return value of ucx_map_iter_next()
Mike Becker <universe@uap-core.de>
parents:
136
diff
changeset
|
174 | * Clones the map and rehashes if necessary. |
7800811078b8
documented map.h + changed return value of ucx_map_iter_next()
Mike Becker <universe@uap-core.de>
parents:
136
diff
changeset
|
175 | * |
7800811078b8
documented map.h + changed return value of ucx_map_iter_next()
Mike Becker <universe@uap-core.de>
parents:
136
diff
changeset
|
176 | * <b>Note:</b> In contrast to ucx_map_rehash() the load factor is irrelevant. |
7800811078b8
documented map.h + changed return value of ucx_map_iter_next()
Mike Becker <universe@uap-core.de>
parents:
136
diff
changeset
|
177 | * This function <i>always</i> ensures a new UcxMap.size of at least |
7800811078b8
documented map.h + changed return value of ucx_map_iter_next()
Mike Becker <universe@uap-core.de>
parents:
136
diff
changeset
|
178 | * 2.5*UcxMap.count. |
7800811078b8
documented map.h + changed return value of ucx_map_iter_next()
Mike Becker <universe@uap-core.de>
parents:
136
diff
changeset
|
179 | * |
7800811078b8
documented map.h + changed return value of ucx_map_iter_next()
Mike Becker <universe@uap-core.de>
parents:
136
diff
changeset
|
180 | * @param map the map to clone |
7800811078b8
documented map.h + changed return value of ucx_map_iter_next()
Mike Becker <universe@uap-core.de>
parents:
136
diff
changeset
|
181 | * @param fnc the copy function to use or <code>NULL</code> if the new and |
7800811078b8
documented map.h + changed return value of ucx_map_iter_next()
Mike Becker <universe@uap-core.de>
parents:
136
diff
changeset
|
182 | * the old map shall share the data pointers |
7800811078b8
documented map.h + changed return value of ucx_map_iter_next()
Mike Becker <universe@uap-core.de>
parents:
136
diff
changeset
|
183 | * @param data additional data for the copy function |
7800811078b8
documented map.h + changed return value of ucx_map_iter_next()
Mike Becker <universe@uap-core.de>
parents:
136
diff
changeset
|
184 | * @return the cloned map |
7800811078b8
documented map.h + changed return value of ucx_map_iter_next()
Mike Becker <universe@uap-core.de>
parents:
136
diff
changeset
|
185 | * @see ucx_map_copy() |
7800811078b8
documented map.h + changed return value of ucx_map_iter_next()
Mike Becker <universe@uap-core.de>
parents:
136
diff
changeset
|
186 | */ |
44 | 187 | UcxMap *ucx_map_clone(UcxMap *map, copy_func fnc, void *data); |
138
7800811078b8
documented map.h + changed return value of ucx_map_iter_next()
Mike Becker <universe@uap-core.de>
parents:
136
diff
changeset
|
188 | |
7800811078b8
documented map.h + changed return value of ucx_map_iter_next()
Mike Becker <universe@uap-core.de>
parents:
136
diff
changeset
|
189 | /** |
7800811078b8
documented map.h + changed return value of ucx_map_iter_next()
Mike Becker <universe@uap-core.de>
parents:
136
diff
changeset
|
190 | * Increases size of the hash map, if necessary. |
7800811078b8
documented map.h + changed return value of ucx_map_iter_next()
Mike Becker <universe@uap-core.de>
parents:
136
diff
changeset
|
191 | * |
7800811078b8
documented map.h + changed return value of ucx_map_iter_next()
Mike Becker <universe@uap-core.de>
parents:
136
diff
changeset
|
192 | * The load value is 0.75*UcxMap.size. If the element count exceeds the load |
7800811078b8
documented map.h + changed return value of ucx_map_iter_next()
Mike Becker <universe@uap-core.de>
parents:
136
diff
changeset
|
193 | * value, the map needs to be rehashed. Otherwise no action is performed and |
7800811078b8
documented map.h + changed return value of ucx_map_iter_next()
Mike Becker <universe@uap-core.de>
parents:
136
diff
changeset
|
194 | * this function simply returns 0. |
7800811078b8
documented map.h + changed return value of ucx_map_iter_next()
Mike Becker <universe@uap-core.de>
parents:
136
diff
changeset
|
195 | * |
7800811078b8
documented map.h + changed return value of ucx_map_iter_next()
Mike Becker <universe@uap-core.de>
parents:
136
diff
changeset
|
196 | * The rehashing process ensures, that the UcxMap.size is at least |
7800811078b8
documented map.h + changed return value of ucx_map_iter_next()
Mike Becker <universe@uap-core.de>
parents:
136
diff
changeset
|
197 | * 2.5*UcxMap.count. So there is enough room for additional elements without |
7800811078b8
documented map.h + changed return value of ucx_map_iter_next()
Mike Becker <universe@uap-core.de>
parents:
136
diff
changeset
|
198 | * the need of another soon rehashing. |
7800811078b8
documented map.h + changed return value of ucx_map_iter_next()
Mike Becker <universe@uap-core.de>
parents:
136
diff
changeset
|
199 | * |
7800811078b8
documented map.h + changed return value of ucx_map_iter_next()
Mike Becker <universe@uap-core.de>
parents:
136
diff
changeset
|
200 | * You can use this function to dramatically increase access performance. |
7800811078b8
documented map.h + changed return value of ucx_map_iter_next()
Mike Becker <universe@uap-core.de>
parents:
136
diff
changeset
|
201 | * |
7800811078b8
documented map.h + changed return value of ucx_map_iter_next()
Mike Becker <universe@uap-core.de>
parents:
136
diff
changeset
|
202 | * @param map the map to rehash |
7800811078b8
documented map.h + changed return value of ucx_map_iter_next()
Mike Becker <universe@uap-core.de>
parents:
136
diff
changeset
|
203 | * @return 1, if a memory allocation error occurred, 0 otherwise |
7800811078b8
documented map.h + changed return value of ucx_map_iter_next()
Mike Becker <universe@uap-core.de>
parents:
136
diff
changeset
|
204 | */ |
52
34f50d0bada4
added ucx_map_copy and fixed ucx_map_rehash
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
51
diff
changeset
|
205 | int ucx_map_rehash(UcxMap *map); |
20
db7d9860dbbd
added some map functions
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
2
diff
changeset
|
206 | |
138
7800811078b8
documented map.h + changed return value of ucx_map_iter_next()
Mike Becker <universe@uap-core.de>
parents:
136
diff
changeset
|
207 | /** |
7800811078b8
documented map.h + changed return value of ucx_map_iter_next()
Mike Becker <universe@uap-core.de>
parents:
136
diff
changeset
|
208 | * Puts a key/value-pair into the map. |
7800811078b8
documented map.h + changed return value of ucx_map_iter_next()
Mike Becker <universe@uap-core.de>
parents:
136
diff
changeset
|
209 | * |
7800811078b8
documented map.h + changed return value of ucx_map_iter_next()
Mike Becker <universe@uap-core.de>
parents:
136
diff
changeset
|
210 | * @param map the map |
7800811078b8
documented map.h + changed return value of ucx_map_iter_next()
Mike Becker <universe@uap-core.de>
parents:
136
diff
changeset
|
211 | * @param key the key |
7800811078b8
documented map.h + changed return value of ucx_map_iter_next()
Mike Becker <universe@uap-core.de>
parents:
136
diff
changeset
|
212 | * @param value the value |
7800811078b8
documented map.h + changed return value of ucx_map_iter_next()
Mike Becker <universe@uap-core.de>
parents:
136
diff
changeset
|
213 | * @return 0 on success, non-zero value on failure |
7800811078b8
documented map.h + changed return value of ucx_map_iter_next()
Mike Becker <universe@uap-core.de>
parents:
136
diff
changeset
|
214 | */ |
7800811078b8
documented map.h + changed return value of ucx_map_iter_next()
Mike Becker <universe@uap-core.de>
parents:
136
diff
changeset
|
215 | int ucx_map_put(UcxMap *map, UcxKey key, void *value); |
7800811078b8
documented map.h + changed return value of ucx_map_iter_next()
Mike Becker <universe@uap-core.de>
parents:
136
diff
changeset
|
216 | |
7800811078b8
documented map.h + changed return value of ucx_map_iter_next()
Mike Becker <universe@uap-core.de>
parents:
136
diff
changeset
|
217 | /** |
7800811078b8
documented map.h + changed return value of ucx_map_iter_next()
Mike Becker <universe@uap-core.de>
parents:
136
diff
changeset
|
218 | * Retrieves a value by using a key. |
7800811078b8
documented map.h + changed return value of ucx_map_iter_next()
Mike Becker <universe@uap-core.de>
parents:
136
diff
changeset
|
219 | * |
7800811078b8
documented map.h + changed return value of ucx_map_iter_next()
Mike Becker <universe@uap-core.de>
parents:
136
diff
changeset
|
220 | * @param map the map |
7800811078b8
documented map.h + changed return value of ucx_map_iter_next()
Mike Becker <universe@uap-core.de>
parents:
136
diff
changeset
|
221 | * @param key the key |
7800811078b8
documented map.h + changed return value of ucx_map_iter_next()
Mike Becker <universe@uap-core.de>
parents:
136
diff
changeset
|
222 | * @return the value |
7800811078b8
documented map.h + changed return value of ucx_map_iter_next()
Mike Becker <universe@uap-core.de>
parents:
136
diff
changeset
|
223 | */ |
20
db7d9860dbbd
added some map functions
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
2
diff
changeset
|
224 | void* ucx_map_get(UcxMap *map, UcxKey key); |
138
7800811078b8
documented map.h + changed return value of ucx_map_iter_next()
Mike Becker <universe@uap-core.de>
parents:
136
diff
changeset
|
225 | |
7800811078b8
documented map.h + changed return value of ucx_map_iter_next()
Mike Becker <universe@uap-core.de>
parents:
136
diff
changeset
|
226 | /** |
7800811078b8
documented map.h + changed return value of ucx_map_iter_next()
Mike Becker <universe@uap-core.de>
parents:
136
diff
changeset
|
227 | * Removes a key/value-pair from the map by using the key. |
7800811078b8
documented map.h + changed return value of ucx_map_iter_next()
Mike Becker <universe@uap-core.de>
parents:
136
diff
changeset
|
228 | * |
7800811078b8
documented map.h + changed return value of ucx_map_iter_next()
Mike Becker <universe@uap-core.de>
parents:
136
diff
changeset
|
229 | * @param map the map |
7800811078b8
documented map.h + changed return value of ucx_map_iter_next()
Mike Becker <universe@uap-core.de>
parents:
136
diff
changeset
|
230 | * @param key the key |
7800811078b8
documented map.h + changed return value of ucx_map_iter_next()
Mike Becker <universe@uap-core.de>
parents:
136
diff
changeset
|
231 | * @return the removed value |
7800811078b8
documented map.h + changed return value of ucx_map_iter_next()
Mike Becker <universe@uap-core.de>
parents:
136
diff
changeset
|
232 | */ |
53 | 233 | void* ucx_map_remove(UcxMap *map, UcxKey key); |
20
db7d9860dbbd
added some map functions
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
2
diff
changeset
|
234 | |
136
b798f2eed26a
started documentation of map.h + renamed allocator version of ucx_map_new
Mike Becker <universe@uap-core.de>
parents:
120
diff
changeset
|
235 | /** |
b798f2eed26a
started documentation of map.h + renamed allocator version of ucx_map_new
Mike Becker <universe@uap-core.de>
parents:
120
diff
changeset
|
236 | * Shorthand for putting data with a sstr_t key into the map. |
b798f2eed26a
started documentation of map.h + renamed allocator version of ucx_map_new
Mike Becker <universe@uap-core.de>
parents:
120
diff
changeset
|
237 | * @param map the map |
b798f2eed26a
started documentation of map.h + renamed allocator version of ucx_map_new
Mike Becker <universe@uap-core.de>
parents:
120
diff
changeset
|
238 | * @param key the key |
b798f2eed26a
started documentation of map.h + renamed allocator version of ucx_map_new
Mike Becker <universe@uap-core.de>
parents:
120
diff
changeset
|
239 | * @param value the value |
138
7800811078b8
documented map.h + changed return value of ucx_map_iter_next()
Mike Becker <universe@uap-core.de>
parents:
136
diff
changeset
|
240 | * @return 0 on success, non-zero value on failure |
136
b798f2eed26a
started documentation of map.h + renamed allocator version of ucx_map_new
Mike Becker <universe@uap-core.de>
parents:
120
diff
changeset
|
241 | * @see ucx_map_put() |
b798f2eed26a
started documentation of map.h + renamed allocator version of ucx_map_new
Mike Becker <universe@uap-core.de>
parents:
120
diff
changeset
|
242 | */ |
b798f2eed26a
started documentation of map.h + renamed allocator version of ucx_map_new
Mike Becker <universe@uap-core.de>
parents:
120
diff
changeset
|
243 | #define ucx_map_sstr_put(map, key, value) \ |
b798f2eed26a
started documentation of map.h + renamed allocator version of ucx_map_new
Mike Becker <universe@uap-core.de>
parents:
120
diff
changeset
|
244 | ucx_map_put(map, ucx_key(key.ptr, key.length), (void*)value) |
146
aa376dba1ba8
fixed documentation for netbeans parser + added sstrprefix() and sstrsuffix()
Mike Becker <universe@uap-core.de>
parents:
139
diff
changeset
|
245 | |
136
b798f2eed26a
started documentation of map.h + renamed allocator version of ucx_map_new
Mike Becker <universe@uap-core.de>
parents:
120
diff
changeset
|
246 | /** |
b798f2eed26a
started documentation of map.h + renamed allocator version of ucx_map_new
Mike Becker <universe@uap-core.de>
parents:
120
diff
changeset
|
247 | * Shorthand for putting data with a C string key into the map. |
b798f2eed26a
started documentation of map.h + renamed allocator version of ucx_map_new
Mike Becker <universe@uap-core.de>
parents:
120
diff
changeset
|
248 | * @param map the map |
b798f2eed26a
started documentation of map.h + renamed allocator version of ucx_map_new
Mike Becker <universe@uap-core.de>
parents:
120
diff
changeset
|
249 | * @param key the key |
b798f2eed26a
started documentation of map.h + renamed allocator version of ucx_map_new
Mike Becker <universe@uap-core.de>
parents:
120
diff
changeset
|
250 | * @param value the value |
138
7800811078b8
documented map.h + changed return value of ucx_map_iter_next()
Mike Becker <universe@uap-core.de>
parents:
136
diff
changeset
|
251 | * @return 0 on success, non-zero value on failure |
136
b798f2eed26a
started documentation of map.h + renamed allocator version of ucx_map_new
Mike Becker <universe@uap-core.de>
parents:
120
diff
changeset
|
252 | * @see ucx_map_put() |
b798f2eed26a
started documentation of map.h + renamed allocator version of ucx_map_new
Mike Becker <universe@uap-core.de>
parents:
120
diff
changeset
|
253 | */ |
b798f2eed26a
started documentation of map.h + renamed allocator version of ucx_map_new
Mike Becker <universe@uap-core.de>
parents:
120
diff
changeset
|
254 | #define ucx_map_cstr_put(map, key, value) \ |
b798f2eed26a
started documentation of map.h + renamed allocator version of ucx_map_new
Mike Becker <universe@uap-core.de>
parents:
120
diff
changeset
|
255 | ucx_map_put(map, ucx_key((void*)key, strlen(key)), (void*)value) |
146
aa376dba1ba8
fixed documentation for netbeans parser + added sstrprefix() and sstrsuffix()
Mike Becker <universe@uap-core.de>
parents:
139
diff
changeset
|
256 | |
136
b798f2eed26a
started documentation of map.h + renamed allocator version of ucx_map_new
Mike Becker <universe@uap-core.de>
parents:
120
diff
changeset
|
257 | /** |
b798f2eed26a
started documentation of map.h + renamed allocator version of ucx_map_new
Mike Becker <universe@uap-core.de>
parents:
120
diff
changeset
|
258 | * Shorthand for putting data with an integer key into the map. |
b798f2eed26a
started documentation of map.h + renamed allocator version of ucx_map_new
Mike Becker <universe@uap-core.de>
parents:
120
diff
changeset
|
259 | * @param map the map |
b798f2eed26a
started documentation of map.h + renamed allocator version of ucx_map_new
Mike Becker <universe@uap-core.de>
parents:
120
diff
changeset
|
260 | * @param key the key |
b798f2eed26a
started documentation of map.h + renamed allocator version of ucx_map_new
Mike Becker <universe@uap-core.de>
parents:
120
diff
changeset
|
261 | * @param value the value |
138
7800811078b8
documented map.h + changed return value of ucx_map_iter_next()
Mike Becker <universe@uap-core.de>
parents:
136
diff
changeset
|
262 | * @return 0 on success, non-zero value on failure |
136
b798f2eed26a
started documentation of map.h + renamed allocator version of ucx_map_new
Mike Becker <universe@uap-core.de>
parents:
120
diff
changeset
|
263 | * @see ucx_map_put() |
b798f2eed26a
started documentation of map.h + renamed allocator version of ucx_map_new
Mike Becker <universe@uap-core.de>
parents:
120
diff
changeset
|
264 | */ |
b798f2eed26a
started documentation of map.h + renamed allocator version of ucx_map_new
Mike Becker <universe@uap-core.de>
parents:
120
diff
changeset
|
265 | #define ucx_map_int_put(map, key, value) \ |
b798f2eed26a
started documentation of map.h + renamed allocator version of ucx_map_new
Mike Becker <universe@uap-core.de>
parents:
120
diff
changeset
|
266 | ucx_map_put(map, ucx_key((void*)&key, sizeof(key)), (void*)value) |
b798f2eed26a
started documentation of map.h + renamed allocator version of ucx_map_new
Mike Becker <universe@uap-core.de>
parents:
120
diff
changeset
|
267 | |
b798f2eed26a
started documentation of map.h + renamed allocator version of ucx_map_new
Mike Becker <universe@uap-core.de>
parents:
120
diff
changeset
|
268 | /** |
b798f2eed26a
started documentation of map.h + renamed allocator version of ucx_map_new
Mike Becker <universe@uap-core.de>
parents:
120
diff
changeset
|
269 | * Shorthand for getting data from the map with a sstr_t key. |
b798f2eed26a
started documentation of map.h + renamed allocator version of ucx_map_new
Mike Becker <universe@uap-core.de>
parents:
120
diff
changeset
|
270 | * @param map the map |
b798f2eed26a
started documentation of map.h + renamed allocator version of ucx_map_new
Mike Becker <universe@uap-core.de>
parents:
120
diff
changeset
|
271 | * @param key the key |
138
7800811078b8
documented map.h + changed return value of ucx_map_iter_next()
Mike Becker <universe@uap-core.de>
parents:
136
diff
changeset
|
272 | * @return the value |
136
b798f2eed26a
started documentation of map.h + renamed allocator version of ucx_map_new
Mike Becker <universe@uap-core.de>
parents:
120
diff
changeset
|
273 | * @see ucx_map_get() |
b798f2eed26a
started documentation of map.h + renamed allocator version of ucx_map_new
Mike Becker <universe@uap-core.de>
parents:
120
diff
changeset
|
274 | */ |
b798f2eed26a
started documentation of map.h + renamed allocator version of ucx_map_new
Mike Becker <universe@uap-core.de>
parents:
120
diff
changeset
|
275 | #define ucx_map_sstr_get(map, key) \ |
b798f2eed26a
started documentation of map.h + renamed allocator version of ucx_map_new
Mike Becker <universe@uap-core.de>
parents:
120
diff
changeset
|
276 | ucx_map_get(map, ucx_key(key.ptr, key.length)) |
146
aa376dba1ba8
fixed documentation for netbeans parser + added sstrprefix() and sstrsuffix()
Mike Becker <universe@uap-core.de>
parents:
139
diff
changeset
|
277 | |
136
b798f2eed26a
started documentation of map.h + renamed allocator version of ucx_map_new
Mike Becker <universe@uap-core.de>
parents:
120
diff
changeset
|
278 | /** |
b798f2eed26a
started documentation of map.h + renamed allocator version of ucx_map_new
Mike Becker <universe@uap-core.de>
parents:
120
diff
changeset
|
279 | * Shorthand for getting data from the map with a C string key. |
138
7800811078b8
documented map.h + changed return value of ucx_map_iter_next()
Mike Becker <universe@uap-core.de>
parents:
136
diff
changeset
|
280 | * @param map the map |
7800811078b8
documented map.h + changed return value of ucx_map_iter_next()
Mike Becker <universe@uap-core.de>
parents:
136
diff
changeset
|
281 | * @param key the key |
7800811078b8
documented map.h + changed return value of ucx_map_iter_next()
Mike Becker <universe@uap-core.de>
parents:
136
diff
changeset
|
282 | * @return the value |
136
b798f2eed26a
started documentation of map.h + renamed allocator version of ucx_map_new
Mike Becker <universe@uap-core.de>
parents:
120
diff
changeset
|
283 | * @see ucx_map_get() |
b798f2eed26a
started documentation of map.h + renamed allocator version of ucx_map_new
Mike Becker <universe@uap-core.de>
parents:
120
diff
changeset
|
284 | */ |
b798f2eed26a
started documentation of map.h + renamed allocator version of ucx_map_new
Mike Becker <universe@uap-core.de>
parents:
120
diff
changeset
|
285 | #define ucx_map_cstr_get(map, key) \ |
b798f2eed26a
started documentation of map.h + renamed allocator version of ucx_map_new
Mike Becker <universe@uap-core.de>
parents:
120
diff
changeset
|
286 | ucx_map_get(map, ucx_key((void*)key, strlen(key))) |
146
aa376dba1ba8
fixed documentation for netbeans parser + added sstrprefix() and sstrsuffix()
Mike Becker <universe@uap-core.de>
parents:
139
diff
changeset
|
287 | |
136
b798f2eed26a
started documentation of map.h + renamed allocator version of ucx_map_new
Mike Becker <universe@uap-core.de>
parents:
120
diff
changeset
|
288 | /** |
b798f2eed26a
started documentation of map.h + renamed allocator version of ucx_map_new
Mike Becker <universe@uap-core.de>
parents:
120
diff
changeset
|
289 | * Shorthand for getting data from the map with an integer key. |
b798f2eed26a
started documentation of map.h + renamed allocator version of ucx_map_new
Mike Becker <universe@uap-core.de>
parents:
120
diff
changeset
|
290 | * @param map the map |
b798f2eed26a
started documentation of map.h + renamed allocator version of ucx_map_new
Mike Becker <universe@uap-core.de>
parents:
120
diff
changeset
|
291 | * @param key the key |
138
7800811078b8
documented map.h + changed return value of ucx_map_iter_next()
Mike Becker <universe@uap-core.de>
parents:
136
diff
changeset
|
292 | * @return the value |
136
b798f2eed26a
started documentation of map.h + renamed allocator version of ucx_map_new
Mike Becker <universe@uap-core.de>
parents:
120
diff
changeset
|
293 | * @see ucx_map_get() |
b798f2eed26a
started documentation of map.h + renamed allocator version of ucx_map_new
Mike Becker <universe@uap-core.de>
parents:
120
diff
changeset
|
294 | */ |
b798f2eed26a
started documentation of map.h + renamed allocator version of ucx_map_new
Mike Becker <universe@uap-core.de>
parents:
120
diff
changeset
|
295 | #define ucx_map_int_get(map, key) \ |
b798f2eed26a
started documentation of map.h + renamed allocator version of ucx_map_new
Mike Becker <universe@uap-core.de>
parents:
120
diff
changeset
|
296 | ucx_map_get(map, ucx_key((void*)&key, sizeof(int))) |
146
aa376dba1ba8
fixed documentation for netbeans parser + added sstrprefix() and sstrsuffix()
Mike Becker <universe@uap-core.de>
parents:
139
diff
changeset
|
297 | |
136
b798f2eed26a
started documentation of map.h + renamed allocator version of ucx_map_new
Mike Becker <universe@uap-core.de>
parents:
120
diff
changeset
|
298 | /** |
b798f2eed26a
started documentation of map.h + renamed allocator version of ucx_map_new
Mike Becker <universe@uap-core.de>
parents:
120
diff
changeset
|
299 | * Shorthand for removing data from the map with a sstr_t key. |
b798f2eed26a
started documentation of map.h + renamed allocator version of ucx_map_new
Mike Becker <universe@uap-core.de>
parents:
120
diff
changeset
|
300 | * @param map the map |
b798f2eed26a
started documentation of map.h + renamed allocator version of ucx_map_new
Mike Becker <universe@uap-core.de>
parents:
120
diff
changeset
|
301 | * @param key the key |
138
7800811078b8
documented map.h + changed return value of ucx_map_iter_next()
Mike Becker <universe@uap-core.de>
parents:
136
diff
changeset
|
302 | * @return the removed value |
136
b798f2eed26a
started documentation of map.h + renamed allocator version of ucx_map_new
Mike Becker <universe@uap-core.de>
parents:
120
diff
changeset
|
303 | * @see ucx_map_remove() |
b798f2eed26a
started documentation of map.h + renamed allocator version of ucx_map_new
Mike Becker <universe@uap-core.de>
parents:
120
diff
changeset
|
304 | */ |
b798f2eed26a
started documentation of map.h + renamed allocator version of ucx_map_new
Mike Becker <universe@uap-core.de>
parents:
120
diff
changeset
|
305 | #define ucx_map_sstr_remove(map, key) \ |
b798f2eed26a
started documentation of map.h + renamed allocator version of ucx_map_new
Mike Becker <universe@uap-core.de>
parents:
120
diff
changeset
|
306 | ucx_map_remove(map, ucx_key(key.ptr, key.length)) |
146
aa376dba1ba8
fixed documentation for netbeans parser + added sstrprefix() and sstrsuffix()
Mike Becker <universe@uap-core.de>
parents:
139
diff
changeset
|
307 | |
136
b798f2eed26a
started documentation of map.h + renamed allocator version of ucx_map_new
Mike Becker <universe@uap-core.de>
parents:
120
diff
changeset
|
308 | /** |
b798f2eed26a
started documentation of map.h + renamed allocator version of ucx_map_new
Mike Becker <universe@uap-core.de>
parents:
120
diff
changeset
|
309 | * Shorthand for removing data from the map with a C string key. |
b798f2eed26a
started documentation of map.h + renamed allocator version of ucx_map_new
Mike Becker <universe@uap-core.de>
parents:
120
diff
changeset
|
310 | * @param map the map |
b798f2eed26a
started documentation of map.h + renamed allocator version of ucx_map_new
Mike Becker <universe@uap-core.de>
parents:
120
diff
changeset
|
311 | * @param key the key |
138
7800811078b8
documented map.h + changed return value of ucx_map_iter_next()
Mike Becker <universe@uap-core.de>
parents:
136
diff
changeset
|
312 | * @return the removed value |
136
b798f2eed26a
started documentation of map.h + renamed allocator version of ucx_map_new
Mike Becker <universe@uap-core.de>
parents:
120
diff
changeset
|
313 | * @see ucx_map_remove() |
b798f2eed26a
started documentation of map.h + renamed allocator version of ucx_map_new
Mike Becker <universe@uap-core.de>
parents:
120
diff
changeset
|
314 | */ |
b798f2eed26a
started documentation of map.h + renamed allocator version of ucx_map_new
Mike Becker <universe@uap-core.de>
parents:
120
diff
changeset
|
315 | #define ucx_map_cstr_remove(map, key) \ |
b798f2eed26a
started documentation of map.h + renamed allocator version of ucx_map_new
Mike Becker <universe@uap-core.de>
parents:
120
diff
changeset
|
316 | ucx_map_remove(map, ucx_key((void*)key, strlen(key))) |
146
aa376dba1ba8
fixed documentation for netbeans parser + added sstrprefix() and sstrsuffix()
Mike Becker <universe@uap-core.de>
parents:
139
diff
changeset
|
317 | |
136
b798f2eed26a
started documentation of map.h + renamed allocator version of ucx_map_new
Mike Becker <universe@uap-core.de>
parents:
120
diff
changeset
|
318 | /** |
b798f2eed26a
started documentation of map.h + renamed allocator version of ucx_map_new
Mike Becker <universe@uap-core.de>
parents:
120
diff
changeset
|
319 | * Shorthand for removing data from the map with an integer key. |
b798f2eed26a
started documentation of map.h + renamed allocator version of ucx_map_new
Mike Becker <universe@uap-core.de>
parents:
120
diff
changeset
|
320 | * @param map the map |
b798f2eed26a
started documentation of map.h + renamed allocator version of ucx_map_new
Mike Becker <universe@uap-core.de>
parents:
120
diff
changeset
|
321 | * @param key the key |
138
7800811078b8
documented map.h + changed return value of ucx_map_iter_next()
Mike Becker <universe@uap-core.de>
parents:
136
diff
changeset
|
322 | * @return the removed value |
136
b798f2eed26a
started documentation of map.h + renamed allocator version of ucx_map_new
Mike Becker <universe@uap-core.de>
parents:
120
diff
changeset
|
323 | * @see ucx_map_remove() |
b798f2eed26a
started documentation of map.h + renamed allocator version of ucx_map_new
Mike Becker <universe@uap-core.de>
parents:
120
diff
changeset
|
324 | */ |
b798f2eed26a
started documentation of map.h + renamed allocator version of ucx_map_new
Mike Becker <universe@uap-core.de>
parents:
120
diff
changeset
|
325 | #define ucx_map_int_remove(map, key) \ |
b798f2eed26a
started documentation of map.h + renamed allocator version of ucx_map_new
Mike Becker <universe@uap-core.de>
parents:
120
diff
changeset
|
326 | ucx_map_remove(map, ucx_key((void*)&key, sizeof(key))) |
20
db7d9860dbbd
added some map functions
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
2
diff
changeset
|
327 | |
138
7800811078b8
documented map.h + changed return value of ucx_map_iter_next()
Mike Becker <universe@uap-core.de>
parents:
136
diff
changeset
|
328 | /** |
7800811078b8
documented map.h + changed return value of ucx_map_iter_next()
Mike Becker <universe@uap-core.de>
parents:
136
diff
changeset
|
329 | * Creates an UcxKey based on the given data. |
7800811078b8
documented map.h + changed return value of ucx_map_iter_next()
Mike Becker <universe@uap-core.de>
parents:
136
diff
changeset
|
330 | * |
7800811078b8
documented map.h + changed return value of ucx_map_iter_next()
Mike Becker <universe@uap-core.de>
parents:
136
diff
changeset
|
331 | * This function implicitly computes the hash. |
7800811078b8
documented map.h + changed return value of ucx_map_iter_next()
Mike Becker <universe@uap-core.de>
parents:
136
diff
changeset
|
332 | * |
7800811078b8
documented map.h + changed return value of ucx_map_iter_next()
Mike Becker <universe@uap-core.de>
parents:
136
diff
changeset
|
333 | * @param data the data for the key |
7800811078b8
documented map.h + changed return value of ucx_map_iter_next()
Mike Becker <universe@uap-core.de>
parents:
136
diff
changeset
|
334 | * @param len the length of the data |
7800811078b8
documented map.h + changed return value of ucx_map_iter_next()
Mike Becker <universe@uap-core.de>
parents:
136
diff
changeset
|
335 | * @return an UcxKey with implicitly computed hash |
7800811078b8
documented map.h + changed return value of ucx_map_iter_next()
Mike Becker <universe@uap-core.de>
parents:
136
diff
changeset
|
336 | * @see ucx_hash() |
7800811078b8
documented map.h + changed return value of ucx_map_iter_next()
Mike Becker <universe@uap-core.de>
parents:
136
diff
changeset
|
337 | */ |
20
db7d9860dbbd
added some map functions
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
2
diff
changeset
|
338 | UcxKey ucx_key(void *data, size_t len); |
db7d9860dbbd
added some map functions
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
2
diff
changeset
|
339 | |
138
7800811078b8
documented map.h + changed return value of ucx_map_iter_next()
Mike Becker <universe@uap-core.de>
parents:
136
diff
changeset
|
340 | /** |
7800811078b8
documented map.h + changed return value of ucx_map_iter_next()
Mike Becker <universe@uap-core.de>
parents:
136
diff
changeset
|
341 | * Computes a murmur hash-2. |
7800811078b8
documented map.h + changed return value of ucx_map_iter_next()
Mike Becker <universe@uap-core.de>
parents:
136
diff
changeset
|
342 | * |
7800811078b8
documented map.h + changed return value of ucx_map_iter_next()
Mike Becker <universe@uap-core.de>
parents:
136
diff
changeset
|
343 | * @param data the data to hash |
7800811078b8
documented map.h + changed return value of ucx_map_iter_next()
Mike Becker <universe@uap-core.de>
parents:
136
diff
changeset
|
344 | * @param len the length of the data |
7800811078b8
documented map.h + changed return value of ucx_map_iter_next()
Mike Becker <universe@uap-core.de>
parents:
136
diff
changeset
|
345 | * @return the murmur hash-2 of the data |
7800811078b8
documented map.h + changed return value of ucx_map_iter_next()
Mike Becker <universe@uap-core.de>
parents:
136
diff
changeset
|
346 | */ |
67
27e67e725d35
added some qualifiers + removed pointer alias in mergesort
Mike Becker <universe@uap-core.de>
parents:
53
diff
changeset
|
347 | int ucx_hash(const char *data, size_t len); |
2
79646375a420
Added some source files
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
348 | |
138
7800811078b8
documented map.h + changed return value of ucx_map_iter_next()
Mike Becker <universe@uap-core.de>
parents:
136
diff
changeset
|
349 | /** |
7800811078b8
documented map.h + changed return value of ucx_map_iter_next()
Mike Becker <universe@uap-core.de>
parents:
136
diff
changeset
|
350 | * Creates an iterator for a map. |
7800811078b8
documented map.h + changed return value of ucx_map_iter_next()
Mike Becker <universe@uap-core.de>
parents:
136
diff
changeset
|
351 | * |
7800811078b8
documented map.h + changed return value of ucx_map_iter_next()
Mike Becker <universe@uap-core.de>
parents:
136
diff
changeset
|
352 | * <b>Note:</b> An UcxMapIterator iterates over all elements in all element |
7800811078b8
documented map.h + changed return value of ucx_map_iter_next()
Mike Becker <universe@uap-core.de>
parents:
136
diff
changeset
|
353 | * lists successively. Therefore the order highly depends on the key hashes and |
7800811078b8
documented map.h + changed return value of ucx_map_iter_next()
Mike Becker <universe@uap-core.de>
parents:
136
diff
changeset
|
354 | * may vary under different map sizes. So generally you may <b>NOT</b> rely on |
7800811078b8
documented map.h + changed return value of ucx_map_iter_next()
Mike Becker <universe@uap-core.de>
parents:
136
diff
changeset
|
355 | * the iteration order. |
7800811078b8
documented map.h + changed return value of ucx_map_iter_next()
Mike Becker <universe@uap-core.de>
parents:
136
diff
changeset
|
356 | * |
7800811078b8
documented map.h + changed return value of ucx_map_iter_next()
Mike Becker <universe@uap-core.de>
parents:
136
diff
changeset
|
357 | * <b>Note:</b> The iterator is <b>NOT</b> initialized. You need to call |
7800811078b8
documented map.h + changed return value of ucx_map_iter_next()
Mike Becker <universe@uap-core.de>
parents:
136
diff
changeset
|
358 | * ucx_map_iter_next() at least once before accessing any information. However, |
7800811078b8
documented map.h + changed return value of ucx_map_iter_next()
Mike Becker <universe@uap-core.de>
parents:
136
diff
changeset
|
359 | * it is not recommended to access the fields of an UcxMapIterator directly. |
7800811078b8
documented map.h + changed return value of ucx_map_iter_next()
Mike Becker <universe@uap-core.de>
parents:
136
diff
changeset
|
360 | * |
7800811078b8
documented map.h + changed return value of ucx_map_iter_next()
Mike Becker <universe@uap-core.de>
parents:
136
diff
changeset
|
361 | * @param map the map to create the iterator for |
7800811078b8
documented map.h + changed return value of ucx_map_iter_next()
Mike Becker <universe@uap-core.de>
parents:
136
diff
changeset
|
362 | * @return an iterator initialized on the first element of the |
7800811078b8
documented map.h + changed return value of ucx_map_iter_next()
Mike Becker <universe@uap-core.de>
parents:
136
diff
changeset
|
363 | * first element list |
7800811078b8
documented map.h + changed return value of ucx_map_iter_next()
Mike Becker <universe@uap-core.de>
parents:
136
diff
changeset
|
364 | * @see ucx_map_iter_next() |
7800811078b8
documented map.h + changed return value of ucx_map_iter_next()
Mike Becker <universe@uap-core.de>
parents:
136
diff
changeset
|
365 | */ |
31
91ac86557290
added map iterator
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
30
diff
changeset
|
366 | UcxMapIterator ucx_map_iterator(UcxMap *map); |
91ac86557290
added map iterator
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
30
diff
changeset
|
367 | |
138
7800811078b8
documented map.h + changed return value of ucx_map_iter_next()
Mike Becker <universe@uap-core.de>
parents:
136
diff
changeset
|
368 | /** |
7800811078b8
documented map.h + changed return value of ucx_map_iter_next()
Mike Becker <universe@uap-core.de>
parents:
136
diff
changeset
|
369 | * Proceeds to the next element of the map (if any). |
7800811078b8
documented map.h + changed return value of ucx_map_iter_next()
Mike Becker <universe@uap-core.de>
parents:
136
diff
changeset
|
370 | * |
7800811078b8
documented map.h + changed return value of ucx_map_iter_next()
Mike Becker <universe@uap-core.de>
parents:
136
diff
changeset
|
371 | * Subsequent calls on the same iterator proceed to the next element and |
7800811078b8
documented map.h + changed return value of ucx_map_iter_next()
Mike Becker <universe@uap-core.de>
parents:
136
diff
changeset
|
372 | * store the key/value-pair into the memory specified as arguments of this |
7800811078b8
documented map.h + changed return value of ucx_map_iter_next()
Mike Becker <universe@uap-core.de>
parents:
136
diff
changeset
|
373 | * function. |
7800811078b8
documented map.h + changed return value of ucx_map_iter_next()
Mike Becker <universe@uap-core.de>
parents:
136
diff
changeset
|
374 | * |
7800811078b8
documented map.h + changed return value of ucx_map_iter_next()
Mike Becker <universe@uap-core.de>
parents:
136
diff
changeset
|
375 | * If no further elements are found, this function returns zero and leaves the |
7800811078b8
documented map.h + changed return value of ucx_map_iter_next()
Mike Becker <universe@uap-core.de>
parents:
136
diff
changeset
|
376 | * last found key/value-pair in memory. |
7800811078b8
documented map.h + changed return value of ucx_map_iter_next()
Mike Becker <universe@uap-core.de>
parents:
136
diff
changeset
|
377 | * |
7800811078b8
documented map.h + changed return value of ucx_map_iter_next()
Mike Becker <universe@uap-core.de>
parents:
136
diff
changeset
|
378 | * @param iterator the iterator to use |
7800811078b8
documented map.h + changed return value of ucx_map_iter_next()
Mike Becker <universe@uap-core.de>
parents:
136
diff
changeset
|
379 | * @param key a pointer to the memory where to store the key |
7800811078b8
documented map.h + changed return value of ucx_map_iter_next()
Mike Becker <universe@uap-core.de>
parents:
136
diff
changeset
|
380 | * @param value a pointer to the memory where to store the value |
7800811078b8
documented map.h + changed return value of ucx_map_iter_next()
Mike Becker <universe@uap-core.de>
parents:
136
diff
changeset
|
381 | * @return 1, if another element was found, 0 if all elements has been processed |
7800811078b8
documented map.h + changed return value of ucx_map_iter_next()
Mike Becker <universe@uap-core.de>
parents:
136
diff
changeset
|
382 | * @see ucx_map_iterator() |
7800811078b8
documented map.h + changed return value of ucx_map_iter_next()
Mike Becker <universe@uap-core.de>
parents:
136
diff
changeset
|
383 | */ |
7800811078b8
documented map.h + changed return value of ucx_map_iter_next()
Mike Becker <universe@uap-core.de>
parents:
136
diff
changeset
|
384 | int ucx_map_iter_next(UcxMapIterator *iterator, UcxKey *key, void **value); |
31
91ac86557290
added map iterator
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
30
diff
changeset
|
385 | |
42
ff3dd1ee7dee
(broken-commit) - added load and store functions, tests failing
Mike Becker <universe@uap-core.de>
parents:
41
diff
changeset
|
386 | |
2
79646375a420
Added some source files
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
387 | #ifdef __cplusplus |
79646375a420
Added some source files
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
388 | } |
79646375a420
Added some source files
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
389 | #endif |
79646375a420
Added some source files
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
390 | |
120 | 391 | #endif /* UCX_MAP_H */ |
2
79646375a420
Added some source files
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
392 |