summaryrefslogtreecommitdiffstats
path: root/src/utils.h
diff options
context:
space:
mode:
authorGravatar Nikias Bassen2021-09-13 20:28:16 +0200
committerGravatar Nikias Bassen2021-09-13 20:28:16 +0200
commit40b25fd572bf94d65e880a216bba5e825e5bbf2d (patch)
treeb6df709be2dbdec2186df1c7e2bec211b8d0dec5 /src/utils.h
parentbcf56b30fea3b841ee11a9b4f3ac74f6de465f3d (diff)
downloadlibirecovery-40b25fd572bf94d65e880a216bba5e825e5bbf2d.tar.gz
libirecovery-40b25fd572bf94d65e880a216bba5e825e5bbf2d.tar.bz2
Remove duplicated thread/collection code and use new libimobiledevice-glue instead
Diffstat (limited to 'src/utils.h')
-rw-r--r--src/utils.h52
1 files changed, 0 insertions, 52 deletions
diff --git a/src/utils.h b/src/utils.h
deleted file mode 100644
index ccb3a09..0000000
--- a/src/utils.h
+++ /dev/null
@@ -1,52 +0,0 @@
1/*
2 * utils.h
3 *
4 * Copyright (C) 2009 Hector Martin <hector@marcansoft.com>
5 * Copyright (C) 2009 Nikias Bassen <nikias@gmx.li>
6 *
7 * This library is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU Lesser General Public License as
9 * published by the Free Software Foundation, either version 2.1 of the
10 * License, or (at your option) any later version.
11 *
12 * This library is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU Lesser General Public
18 * License along with this program; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
20 */
21
22#ifndef UTILS_H
23#define UTILS_H
24
25struct collection {
26 void **list;
27 int capacity;
28};
29
30void collection_init(struct collection *col);
31void collection_add(struct collection *col, void *element);
32void collection_remove(struct collection *col, void *element);
33int collection_count(struct collection *col);
34void collection_free(struct collection *col);
35void collection_copy(struct collection *dest, struct collection *src);
36
37#define MERGE_(a,b) a ## _ ## b
38#define LABEL_(a,b) MERGE_(a, b)
39#define UNIQUE_VAR(a) LABEL_(a, __LINE__)
40
41#define FOREACH(var, col) \
42 do { \
43 int UNIQUE_VAR(_iter); \
44 for(UNIQUE_VAR(_iter)=0; UNIQUE_VAR(_iter)<(col)->capacity; UNIQUE_VAR(_iter)++) { \
45 if(!(col)->list[UNIQUE_VAR(_iter)]) continue; \
46 var = (col)->list[UNIQUE_VAR(_iter)];
47
48#define ENDFOREACH \
49 } \
50 } while(0);
51
52#endif