Go to the source code of this file.
◆ FOREACH_SET
#define FOREACH_SET |
( |
| Elt, |
|
|
| Set ) |
Value:
for (Elt = (
void *) (n + 1);
cond && (
cond = 0, 1);)
static int cond(LexState *ls)
Definition at line 53 of file ordered-set.h.
53#define FOREACH_SET(Elt, Set) \
54 for (struct criterion_ordered_set_node *n = Set->first; n; n = n->next) \
55 for (int cond = 1; cond;) \
56 for (Elt = (void *) (n + 1); cond && (cond = 0, 1);)
◆ f_criterion_cmp
typedef int(* f_criterion_cmp) (void *, void *) |
◆ insert_ordered_set()
◆ new_ordered_set()