Hash : 1e5dd572 Author : Date : 2010-02-12T16:50:33
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