summaryrefslogtreecommitdiff
path: root/src/tree.h
blob: 4c0be2ae0526b261f50e61497651e4c52b8cf5d8 (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"

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

	git_tree *owner;
};

struct git_tree {
	git_repository_object object;

	git_tree_entry *entries;
	size_t entry_count;
};

void git_tree__free(git_tree *tree);
int git_tree__parse(git_tree *tree);

#endif