blob: 0b19f4634685fdf3c2e58564038e614b8a8a563c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#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
|