]> git.ipfire.org Git - thirdparty/git.git/blob - tree.h
Remove unused "zeropad" entry from tree_list_entry
[thirdparty/git.git] / tree.h
1 #ifndef TREE_H
2 #define TREE_H
3
4 #include "object.h"
5
6 extern const char *tree_type;
7
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 const char *name;
15 const unsigned char *sha1;
16 };
17
18 struct tree {
19 struct object object;
20 void *buffer;
21 unsigned long size;
22 };
23
24 struct tree_entry_list *create_tree_entry_list(struct tree *);
25 void free_tree_entry_list(struct tree_entry_list *);
26
27 struct tree *lookup_tree(const unsigned char *sha1);
28
29 int parse_tree_buffer(struct tree *item, void *buffer, unsigned long size);
30
31 int parse_tree(struct tree *tree);
32
33 /* Parses and returns the tree in the given ent, chasing tags and commits. */
34 struct tree *parse_tree_indirect(const unsigned char *sha1);
35
36 #define READ_TREE_RECURSIVE 1
37 typedef int (*read_tree_fn_t)(const unsigned char *, const char *, int, const char *, unsigned int, int);
38
39 extern int read_tree_recursive(struct tree *tree,
40 const char *base, int baselen,
41 int stage, const char **match,
42 read_tree_fn_t fn);
43
44 extern int read_tree(struct tree *tree, int stage, const char **paths);
45
46 #endif /* TREE_H */