Blame src/blame_git.h

Packit ae9e2a
/*
Packit ae9e2a
 * Copyright (C) the libgit2 contributors. All rights reserved.
Packit ae9e2a
 *
Packit ae9e2a
 * This file is part of libgit2, distributed under the GNU GPL v2 with
Packit ae9e2a
 * a Linking Exception. For full terms see the included COPYING file.
Packit ae9e2a
 */
Packit ae9e2a
#ifndef INCLUDE_blame_git__
Packit ae9e2a
#define INCLUDE_blame_git__
Packit ae9e2a
Packit ae9e2a
#include "blame.h"
Packit ae9e2a
Packit ae9e2a
int git_blame__get_origin(
Packit ae9e2a
		git_blame__origin **out,
Packit ae9e2a
		git_blame *sb,
Packit ae9e2a
		git_commit *commit,
Packit ae9e2a
		const char *path);
Packit ae9e2a
void git_blame__free_entry(git_blame__entry *ent);
Packit ae9e2a
int git_blame__like_git(git_blame *sb, uint32_t flags);
Packit ae9e2a
Packit ae9e2a
#endif