[PATCH] Various transport programs
[git/mingw.git] / tree.h
blob19b190565957a7a03c34f7efa68a7fe0c6783d04
1 #ifndef TREE_H
2 #define TREE_H
4 #include "object.h"
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;
12 char *name;
13 union {
14 struct tree *tree;
15 struct blob *blob;
16 } item;
19 struct tree {
20 struct object object;
21 unsigned has_full_path : 1;
22 struct tree_entry_list *entries;
25 struct tree *lookup_tree(unsigned char *sha1);
27 int parse_tree(struct tree *tree);
29 #endif /* TREE_H */