1#ifndef TREE_H2#define TREE_H34#include "object.h"56extern const char *tree_type;78struct tree {9struct object object;10unsigned has_full_path : 1;11};1213struct tree *lookup_tree(unsigned char *sha1);1415int parse_tree(struct tree *tree);1617#endif /* TREE_H */