mirror of
https://github.com/git/git.git
synced 2024-11-02 07:17:58 +01:00
8500349208
We check the ordering of the entries, and we verify that none of the entries has a slash in it (this allows us to remove the hacky "has_full_path" member from the tree structure, since we now just test it by walking the tree entries instead).
28 lines
446 B
C
28 lines
446 B
C
#ifndef TREE_H
|
|
#define TREE_H
|
|
|
|
#include "object.h"
|
|
|
|
extern const char *tree_type;
|
|
|
|
struct tree_entry_list {
|
|
struct tree_entry_list *next;
|
|
unsigned directory : 1;
|
|
unsigned executable : 1;
|
|
char *name;
|
|
union {
|
|
struct tree *tree;
|
|
struct blob *blob;
|
|
} item;
|
|
};
|
|
|
|
struct tree {
|
|
struct object object;
|
|
struct tree_entry_list *entries;
|
|
};
|
|
|
|
struct tree *lookup_tree(unsigned char *sha1);
|
|
|
|
int parse_tree(struct tree *tree);
|
|
|
|
#endif /* TREE_H */
|