win32: Define the ssize_t type using SSIZE_T if supported
[libgit2/raj.git] / src / commit.h
blob0b19f4634685fdf3c2e58564038e614b8a8a563c
1 #ifndef INCLUDE_commit_h__
2 #define INCLUDE_commit_h__
4 #include "git/commit.h"
6 #include <time.h>
8 struct git_commit {
9 git_oid id;
10 time_t commit_time;
11 unsigned parsed:1,
12 flags:26;
15 #endif