mirror of
https://git.proxmox.com/git/libgit2
synced 2025-05-07 16:02:50 +00:00
16 lines
204 B
C
16 lines
204 B
C
#ifndef INCLUDE_commit_h__
|
|
#define INCLUDE_commit_h__
|
|
|
|
#include "git/commit.h"
|
|
|
|
#include <time.h>
|
|
|
|
struct git_commit {
|
|
git_oid id;
|
|
time_t commit_time;
|
|
unsigned parsed:1,
|
|
flags:26;
|
|
};
|
|
|
|
#endif
|