Hash : b3039bee Author : Date : 2008-12-30T21:25:13
Download
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