diff options
author | Junio C Hamano <junkio@cox.net> | 2006-04-24 21:18:58 -0700 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2006-04-24 21:24:13 -0700 |
commit | bad68ec92410cf47dd001aa9b95d0f24c5f4bf77 (patch) | |
tree | 9c3ef1388867852e706dbf9a4ba9cc6a8ec15bfe /cache-tree.h | |
parent | dd0c34c46bdda0c20fd92d00516e711a4c9f7837 (diff) | |
download | git-bad68ec92410cf47dd001aa9b95d0f24c5f4bf77.tar.gz |
index: make the index file format extensible.
... and move the cache-tree data into it.
Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'cache-tree.h')
-rw-r--r-- | cache-tree.h | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/cache-tree.h b/cache-tree.h index 7b149afdc5..c70a7699a9 100644 --- a/cache-tree.h +++ b/cache-tree.h @@ -18,12 +18,13 @@ struct cache_tree { }; struct cache_tree *cache_tree(void); -void cache_tree_free(struct cache_tree *); +void cache_tree_free(struct cache_tree **); void cache_tree_invalidate_path(struct cache_tree *, const char *); -int write_cache_tree(const unsigned char *, struct cache_tree *); -struct cache_tree *read_cache_tree(unsigned char *); -int cache_tree_update(struct cache_tree *, struct cache_entry **, int, int); +void *cache_tree_write(struct cache_tree *root, unsigned long *size_p); +struct cache_tree *cache_tree_read(const char *buffer, unsigned long size); +int cache_tree_fully_valid(struct cache_tree *); +int cache_tree_update(struct cache_tree *, struct cache_entry **, int, int); #endif |