]> git.proxmox.com Git - libgit2.git/blame - src/blame_git.h
New upstream version 1.4.3+dfsg.1
[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
eae0bfdc
PP
10#include "common.h"
11
ceab4e26
BS
12#include "blame.h"
13
b6f60a4d
BS
14int git_blame__get_origin(
15 git_blame__origin **out,
16 git_blame *sb,
17 git_commit *commit,
18 const char *path);
19void git_blame__free_entry(git_blame__entry *ent);
ae195a71 20int git_blame__like_git(git_blame *sb, uint32_t flags);
ceab4e26
BS
21
22#endif