]> git.proxmox.com Git - libgit2.git/blame - src/commit.h
Change usages of static inline to GIT_INLINE
[libgit2.git] / src / commit.h
CommitLineData
4f0adcd0
AE
1#ifndef INCLUDE_commit_h__
2#define INCLUDE_commit_h__
3#include "git/commit.h"
4
5#include <time.h>
6
7struct git_commit {
8 git_oid id;
9 time_t commit_time;
10 unsigned parsed:1,
11 flags:26;
12};
13
14#endif