diff options
Diffstat (limited to 'src/uthash_extra.h')
| -rw-r--r-- | src/uthash_extra.h | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/src/uthash_extra.h b/src/uthash_extra.h deleted file mode 100644 index cbc1056..0000000 --- a/src/uthash_extra.h +++ /dev/null @@ -1,7 +0,0 @@ -#pragma once - -#include <uthash.h> - -#define HASH_ITER2(head, el) \ - for (__typeof__(head) el = (head), __tmp = el != NULL ? el->hh.next : NULL; \ - el != NULL; el = __tmp, __tmp = el != NULL ? el->hh.next : NULL) |