]> git.proxmox.com Git - libgit2.git/blame - src/email.h
Bump debhelper compatibility level to 13
[libgit2.git] / src / email.h
CommitLineData
c25aa7cd
PP
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_email_h__
8#define INCLUDE_email_h__
9
10#include "common.h"
11
12#include "git2/email.h"
13
14extern int git_email__append_from_diff(
15 git_buf *out,
16 git_diff *diff,
17 size_t patch_idx,
18 size_t patch_count,
19 const git_oid *commit_id,
20 const char *summary,
21 const char *body,
22 const git_signature *author,
23 const git_email_create_options *given_opts);
24
25#endif