| 105 | } |
| 106 | |
| 107 | struct cache_tree_sub *cache_tree_sub(struct cache_tree *it, const char *path) |
| 108 | { |
| 109 | int pathlen = strlen(path); |
| 110 | return find_subtree(it, path, pathlen, 1); |
| 111 | } |
| 112 | |
| 113 | static int do_invalidate_path(struct cache_tree *it, const char *path) |
| 114 | { |
no test coverage detected