Code

[PATCH] Buglets fix in the new two scripts
[git.git] / commit.h
index c8684d1cd07d7c9ed0af06a3f3d9e7b49fbed0a2..f7a2cb88bd457d11fd1dcb17f5fb17b0860c72ba 100644 (file)
--- a/commit.h
+++ b/commit.h
@@ -14,11 +14,15 @@ struct commit {
        unsigned long date;
        struct commit_list *parents;
        struct tree *tree;
+       char *buffer;
 };
 
 extern const char *commit_type;
 
 struct commit *lookup_commit(unsigned char *sha1);
+struct commit *lookup_commit_reference(unsigned char *sha1);
+
+int parse_commit_buffer(struct commit *item, void *buffer, unsigned long size);
 
 int parse_commit(struct commit *item);
 
@@ -31,6 +35,7 @@ void sort_by_date(struct commit_list **list);
 /** Removes the first commit from a list sorted by date, and adds all
  * of its parents.
  **/
-struct commit *pop_most_recent_commit(struct commit_list **list);
+struct commit *pop_most_recent_commit(struct commit_list **list, 
+                                     unsigned int mark);
 
 #endif /* COMMIT_H */