| 112 | } \ |
| 113 | \ |
| 114 | static __inline void \ |
| 115 | name##_PCTRIE_REMOVE(struct pctrie *ptree, uint64_t key) \ |
| 116 | { \ |
| 117 | \ |
| 118 | pctrie_remove(ptree, key, freefn); \ |
| 119 | } |
| 120 | |
| 121 | typedef void *(*pctrie_alloc_t)(struct pctrie *ptree); |
| 122 | typedef void (*pctrie_free_t)(struct pctrie *ptree, void *node); |
nothing calls this directly
no test coverage detected