[PATCH] Prevent git-rev-list without --merge-order producing duplicates in output
[git/dscho.git] / tree.h
blob74fe09d7634661d208f88536cf831c3858766450
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 unsigned symlink : 1;
13 unsigned int mode;
14 char *name;
15 union {
16 struct tree *tree;
17 struct blob *blob;
18 } item;
19 struct tree_entry_list *parent;
22 struct tree {
23 struct object object;
24 struct tree_entry_list *entries;
27 struct tree *lookup_tree(const unsigned char *sha1);
29 int parse_tree_buffer(struct tree *item, void *buffer, unsigned long size);
31 int parse_tree(struct tree *tree);
33 #endif /* TREE_H */