summaryrefslogtreecommitdiff
path: root/src/tree.h
blob: 84d02222f0dc80e949612c63dfaee0a9c129ea6e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#ifndef INCLUDE_tree_h__
#define INCLUDE_tree_h__

#include <git/tree.h>
#include "repository.h"
#include "vector.h"

struct git_tree_entry {
	unsigned int attr;
	char *filename;
	git_oid oid;

	git_tree *owner;
};

struct git_tree {
	git_object object;
	git_vector entries;
};

void git_tree__free(git_tree *tree);
int git_tree__parse(git_tree *tree);
int git_tree__writeback(git_tree *tree, git_odb_source *src);

#endif