mirror of
https://git.proxmox.com/git/libgit2
synced 2025-05-16 08:40:52 +00:00

- Use a space to separate oids and signature - Enforce test coverage - Make test run in a temporary folder in order not to alter the test repository
13 lines
382 B
C
13 lines
382 B
C
#ifndef INCLUDE_signature_h__
|
|
#define INCLUDE_signature_h__
|
|
|
|
#include "git2/common.h"
|
|
#include "git2/signature.h"
|
|
#include "repository.h"
|
|
#include <time.h>
|
|
|
|
int git_signature__parse(git_signature *sig, const char **buffer_out, const char *buffer_end, const char *header, char ender);
|
|
void git_signature__writebuf(git_buf *buf, const char *header, const git_signature *sig);
|
|
|
|
#endif
|