forked from Tasssadar/multirom
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcontainers.h
73 lines (65 loc) · 2.56 KB
/
containers.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
/*
* Copyright (C) 2010 The Android Open Source Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#ifndef CONTAINERS_H
#define CONTAINERS_H
// auto-conversion of pointer type occurs only for
// void*, not for void** nor void***
typedef void* ptrToList; // void ***
typedef void* listItself; // void **
typedef void* callback;
typedef void(*callbackPtr)(void*);
void list_add(ptrToList list_p, void *item);
void list_add_at(ptrToList list_p, int idx, void *item);
int list_add_from_list(ptrToList list_p, listItself src_p);
int list_rm(ptrToList list_p, void *item, callback destroy_callback_p);
int list_rm_noreorder(ptrToList list_p, void *item, callback destroy_callback_p);
int list_rm_opt(ptrToList list_p, void *item, callback destroy_callback_p, int reorder);
int list_rm_at(ptrToList list_p, int idx, callback destroy_callback_p);
int list_size(listItself list);
int list_item_count(listItself list);
int list_copy(ptrToList dest_p, listItself src);
int list_move(ptrToList dest_p, ptrToList source_p);
void list_clear(ptrToList list_p, callback destroy_callback_p);
void list_swap(ptrToList a_p, ptrToList b_p);
typedef struct
{
char **keys;
void **values;
size_t size;
} map;
map *map_create(void);
void map_destroy(map *m, void (*destroy_callback)(void*));
void map_add(map *m, const char *key, void *val, void (*destroy_callback)(void*));
void map_add_not_exist(map *m, const char *key, void *val);
void map_rm(map *m, const char *key, void (*destroy_callback)(void*));
int map_find(map *m, const char *key);
void *map_get_val(map *m, const char *key);
void *map_get_ref(map *m, const char *key);
typedef struct
{
int *keys;
void **values;
size_t size;
} imap;
imap *imap_create(void);
void imap_destroy(imap *m, void (*destroy_callback)(void*));
void imap_add(imap *m, int key, void *val, void (*destroy_callback)(void*));
void imap_add_not_exist(imap *m, int key, void *val);
void imap_rm(imap *m, int key, void (*destroy_callback)(void*));
int imap_find(imap *m, int key);
void *imap_get_val(imap *m, int key);
void *imap_get_ref(imap *m, int key);
#endif