Go to the documentation of this file.
26 #ifndef FIRM_ADT_PMAP_H
27 #define FIRM_ADT_PMAP_H
81 #define pmap_get(type, map, key) ((type*)pmap_get(map, key))
99 #define foreach_pmap(pmap, curr) \
100 for (curr = pmap_first(pmap); curr; curr = pmap_next(pmap))