summaryrefslogtreecommitdiff
path: root/tree.h
diff options
context:
space:
mode:
authorLinus Torvalds <torvalds@osdl.org>2006-05-29 19:21:28 (GMT)
committerJunio C Hamano <junkio@cox.net>2006-05-30 02:08:37 (GMT)
commit15b5536ee47c6684806edd7725adbbdede9fb95c (patch)
treed490a2039f8e8ab384f84d2c987341fbb2f17762 /tree.h
parent1bc995a3920da4e9143ccf9d34bdabf70ab8a211 (diff)
downloadgit-15b5536ee47c6684806edd7725adbbdede9fb95c.zip
git-15b5536ee47c6684806edd7725adbbdede9fb95c.tar.gz
git-15b5536ee47c6684806edd7725adbbdede9fb95c.tar.bz2
Remove last vestiges of generic tree_entry_list
The old tree_entry_list is dead, long live the unified single tree parser. Yes, we now still have a compatibility function to create a bogus tree_entry_list in builtin-read-tree.c, but that is now entirely local to that very messy piece of code. I'd love to clean read-tree.c up too, but I'm too scared right now, so the best I can do is to just contain the damage, and try to make sure that no new users of the tree_entry_list sprout up by not having it as an exported interface any more. Signed-off-by: Linus Torvalds <torvalds@osdl.org> Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'tree.h')
-rw-r--r--tree.h13
1 files changed, 0 insertions, 13 deletions
diff --git a/tree.h b/tree.h
index 6a87546..dd25c53 100644
--- a/tree.h
+++ b/tree.h
@@ -5,25 +5,12 @@
extern const char *tree_type;
-struct tree_entry_list {
- struct tree_entry_list *next;
- unsigned directory : 1;
- unsigned executable : 1;
- unsigned symlink : 1;
- unsigned int mode;
- const char *name;
- const unsigned char *sha1;
-};
-
struct tree {
struct object object;
void *buffer;
unsigned long size;
};
-struct tree_entry_list *create_tree_entry_list(struct tree *);
-void free_tree_entry_list(struct tree_entry_list *);
-
struct tree *lookup_tree(const unsigned char *sha1);
int parse_tree_buffer(struct tree *item, void *buffer, unsigned long size);