6 extern const char *tree_type
;
8 struct tree_entry_list
{
9 struct tree_entry_list
*next
;
10 unsigned directory
: 1;
11 unsigned executable
: 1;
21 struct tree_entry_list
*parent
;
26 struct tree_entry_list
*entries
;
29 struct tree
*lookup_tree(const unsigned char *sha1
);
31 int parse_tree_buffer(struct tree
*item
, void *buffer
, unsigned long size
);
33 int parse_tree(struct tree
*tree
);
35 /* Parses and returns the tree in the given ent, chasing tags and commits. */
36 struct tree
*parse_tree_indirect(const unsigned char *sha1
);