mirror of
https://git.proxmox.com/git/libgit2
synced 2025-05-21 14:02:00 +00:00

Libgit2 is now officially include as #include "<git2.h>" or indidividual files may be included as #include <git2/index.h> Signed-off-by: Vicent Marti <tanoku@gmail.com>
26 lines
424 B
C
26 lines
424 B
C
#ifndef INCLUDE_tree_h__
|
|
#define INCLUDE_tree_h__
|
|
|
|
#include "git2/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
|