blob: 05504cd34d6ed35cbc7c99708d226758a1cf8b57 (
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
|