]> git.proxmox.com Git - libgit2.git/blame - src/signature.h
Fix the build on Emscripten
[libgit2.git] / src / signature.h
CommitLineData
bb742ede
VM
1/*
2 * Copyright (C) 2009-2011 the libgit2 contributors
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 */
638c2ca4
VM
7#ifndef INCLUDE_signature_h__
8#define INCLUDE_signature_h__
9
10#include "git2/common.h"
11#include "git2/signature.h"
12#include "repository.h"
13#include <time.h>
14
7757be33 15int git_signature__parse(git_signature *sig, const char **buffer_out, const char *buffer_end, const char *header, char ender);
afeecf4f 16void git_signature__writebuf(git_buf *buf, const char *header, const git_signature *sig);
638c2ca4
VM
17
18#endif