[PATCH] Port rev-tree to parsing functions
[alt-git.git] / commit.h
blob4afd27b1095cf9f9203c96db2b9f2b0bba5063d8
1 #ifndef COMMIT_H
2 #define COMMIT_H
4 #include "object.h"
5 #include "tree.h"
7 struct commit_list {
8 struct commit *item;
9 struct commit_list *next;
12 struct commit {
13 struct object object;
14 unsigned long date;
15 struct commit_list *parents;
16 struct tree *tree;
19 extern const char *commit_type;
21 struct commit *lookup_commit(unsigned char *sha1);
23 int parse_commit(struct commit *item);
25 void free_commit_list(struct commit_list *list);
27 #endif /* COMMIT_H */