]> git.ipfire.org Git - thirdparty/git.git/blame - tree.h
[PATCH] Header files for object parsing
[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
8struct tree {
9 struct object object;
10 unsigned has_full_path : 1;
11};
12
13struct tree *lookup_tree(unsigned char *sha1);
14
15int parse_tree(struct tree *tree);
16
17#endif /* TREE_H */