mirror of
https://git.proxmox.com/git/libgit2
synced 2025-05-22 19:27:00 +00:00

The new signature struct is public, and contains information about the timezone offset. Must be free'd manually by the user. Signed-off-by: Vicent Marti <tanoku@gmail.com>
13 lines
367 B
C
13 lines
367 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, char **buffer_out, const char *buffer_end, const char *header);
|
|
int git_signature__write(git_odb_source *src, const char *header, const git_signature *sig);
|
|
|
|
#endif
|