| 23 | #endif |
| 24 | |
| 25 | struct cache_tree *cache_tree(void) |
| 26 | { |
| 27 | struct cache_tree *it = xcalloc(1, sizeof(struct cache_tree)); |
| 28 | it->entry_count = -1; |
| 29 | return it; |
| 30 | } |
| 31 | |
| 32 | void cache_tree_free(struct cache_tree **it_p) |
| 33 | { |
no test coverage detected