diff options
Diffstat (limited to 'src/utils.h')
| -rw-r--r-- | src/utils.h | 52 |
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 | |||
| 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 | ||
