1
0
mirror of https://github.com/git/git.git synced 2024-09-28 18:32:37 +02:00
git/tree.h

18 lines
257 B
C
Raw Normal View History

#ifndef TREE_H
#define TREE_H
#include "object.h"
extern const char *tree_type;
struct tree {
struct object object;
unsigned has_full_path : 1;
};
struct tree *lookup_tree(unsigned char *sha1);
int parse_tree(struct tree *tree);
#endif /* TREE_H */