diff options
| author | 2019-09-05 08:41:42 +0200 | |
|---|---|---|
| committer | 2019-09-05 08:41:42 +0200 | |
| commit | 43003cbc26315aaaee342158939c3b3504f367d0 (patch) | |
| tree | 49586b12981f955388cc7a765c557d687c5bfc9e /src/utils.h | |
| parent | 174123a943cd26a9c003745d0226eb5bfd1a5d6f (diff) | |
| download | libirecovery-43003cbc26315aaaee342158939c3b3504f367d0.tar.gz libirecovery-43003cbc26315aaaee342158939c3b3504f367d0.tar.bz2 | |
Add missing files for previous commit
I shouldn't do late night commits without checking that I added all files
Diffstat (limited to 'src/utils.h')
| -rw-r--r-- | src/utils.h | 52 |
1 files changed, 52 insertions, 0 deletions
diff --git a/src/utils.h b/src/utils.h new file mode 100644 index 0000000..ccb3a09 --- /dev/null +++ b/src/utils.h | |||
| @@ -0,0 +1,52 @@ | |||
| 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 | |||
| 25 | struct collection { | ||
| 26 | void **list; | ||
| 27 | int capacity; | ||
| 28 | }; | ||
| 29 | |||
| 30 | void collection_init(struct collection *col); | ||
| 31 | void collection_add(struct collection *col, void *element); | ||
| 32 | void collection_remove(struct collection *col, void *element); | ||
| 33 | int collection_count(struct collection *col); | ||
| 34 | void collection_free(struct collection *col); | ||
| 35 | void 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 | ||
