]> git.proxmox.com Git - libgit2.git/blame - src/blame_git.h
push: remove own copy of callbacks
[libgit2.git] / src / blame_git.h
CommitLineData
b6f60a4d
BS
1/*
2 * Copyright (C) the libgit2 contributors. All rights reserved.
3 *
4 * This file is part of libgit2, distributed under the GNU GPL v2 with
5 * a Linking Exception. For full terms see the included COPYING file.
6 */
ceab4e26
BS
7#ifndef INCLUDE_blame_git__
8#define INCLUDE_blame_git__
9
ceab4e26
BS
10#include "blame.h"
11
b6f60a4d
BS
12int git_blame__get_origin(
13 git_blame__origin **out,
14 git_blame *sb,
15 git_commit *commit,
16 const char *path);
17void git_blame__free_entry(git_blame__entry *ent);
18void git_blame__like_git(git_blame *sb, uint32_t flags);
ceab4e26
BS
19
20#endif