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