chiark / gitweb /
CODING_STYLE: add missing -
[elogind.git] / set.c
1 /*-*- Mode: C; c-basic-offset: 8 -*-*/
2
3 #ifdef HAVE_CONFIG_H
4 #include <config.h>
5 #endif
6
7 #include <stdlib.h>
8
9 #include "set.h"
10 #include "hashmap.h"
11
12 #define MAKE_SET(h) ((Set*) (h))
13 #define MAKE_HASHMAP(s) ((Hashmap*) (s))
14
15 /* For now this is not much more than a wrapper around a hashmap */
16
17 Set *set_new(hash_func_t hash_func, compare_func_t compare_func) {
18         return MAKE_SET(hashmap_new(hash_func, compare_func));
19 }
20
21 void set_free(Set* s) {
22         hashmap_free(MAKE_HASHMAP(s));
23 }
24
25 int set_put(Set *s, void *value) {
26         return hashmap_put(MAKE_HASHMAP(s), value, value);
27 }
28
29 void *set_get(Set *s, void *value) {
30         return hashmap_get(MAKE_HASHMAP(s), value);
31 }
32
33 void *set_remove(Set *s, void *value) {
34         return hashmap_remove(MAKE_HASHMAP(s), value);
35 }
36
37 unsigned set_size(Set *s) {
38         return hashmap_size(MAKE_HASHMAP(s));
39 }
40
41 bool set_isempty(Set *s) {
42         return hashmap_isempty(MAKE_HASHMAP(s));
43 }
44
45 void *set_iterate(Set *s, void **state) {
46         return hashmap_iterate(MAKE_HASHMAP(s), state, NULL);
47 }
48
49 void *set_iterate_backwards(Set *s, void **state) {
50         return hashmap_iterate_backwards(MAKE_HASHMAP(s), state, NULL);
51 }
52
53 void *set_steal_first(Set *s) {
54         return hashmap_steal_first(MAKE_HASHMAP(s));
55 }
56
57 void* set_first(Set *s) {
58         return hashmap_first(MAKE_HASHMAP(s));
59 }
60
61 void* set_last(Set *s) {
62         return hashmap_last(MAKE_HASHMAP(s));
63 }