]> git.proxmox.com Git - libgit2.git/blob - src/blame_git.h
patch: use strlen to mean string length
[libgit2.git] / src / blame_git.h
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 */
7 #ifndef INCLUDE_blame_git__
8 #define INCLUDE_blame_git__
9
10 #include "blame.h"
11
12 int git_blame__get_origin(
13 git_blame__origin **out,
14 git_blame *sb,
15 git_commit *commit,
16 const char *path);
17 void git_blame__free_entry(git_blame__entry *ent);
18 int git_blame__like_git(git_blame *sb, uint32_t flags);
19
20 #endif