]> git.ipfire.org Git - thirdparty/git.git/blame - tree.h
git-diff-tree: clean up output
[thirdparty/git.git] / tree.h
CommitLineData
6eb8ae00
DB
1#ifndef TREE_H
2#define TREE_H
3
4#include "object.h"
5
6extern const char *tree_type;
7
08692164
DB
8struct tree_entry_list {
9 struct tree_entry_list *next;
10 unsigned directory : 1;
11 unsigned executable : 1;
42ea9cb2
LT
12 unsigned symlink : 1;
13 unsigned int mode;
08692164
DB
14 char *name;
15 union {
16 struct tree *tree;
17 struct blob *blob;
18 } item;
19};
20
6eb8ae00
DB
21struct tree {
22 struct object object;
08692164 23 struct tree_entry_list *entries;
6eb8ae00
DB
24};
25
26struct tree *lookup_tree(unsigned char *sha1);
27
28int parse_tree(struct tree *tree);
29
30#endif /* TREE_H */