aboutsummaryrefslogtreecommitdiffstats
path: root/commit.h
diff options
context:
space:
mode:
authorDaniel Barkalow <barkalow@iabervon.org>2005-04-18 11:39:48 -0700
committerLinus Torvalds <torvalds@ppc970.osdl.org>2005-04-18 11:39:48 -0700
commit6eb8ae00d4bceaf660a07d8bc5ab8d6ddccbe1af (patch)
treea8b8d7855516b8e7f79de226543f7fdfe8ee1e2e /commit.h
parent6683463ed6b2da9eed309c305806f9393d1ae728 (diff)
downloadgit-6eb8ae00d4bceaf660a07d8bc5ab8d6ddccbe1af.tar.gz
[PATCH] Header files for object parsing
This adds the structs and function declarations for parsing git objects. Signed-Off-By: Daniel Barkalow <barkalow@iabervon.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'commit.h')
-rw-r--r--commit.h27
1 files changed, 27 insertions, 0 deletions
diff --git a/commit.h b/commit.h
new file mode 100644
index 0000000000..4afd27b109
--- /dev/null
+++ b/commit.h
@@ -0,0 +1,27 @@
+#ifndef COMMIT_H
+#define COMMIT_H
+
+#include "object.h"
+#include "tree.h"
+
+struct commit_list {
+ struct commit *item;
+ struct commit_list *next;
+};
+
+struct commit {
+ struct object object;
+ unsigned long date;
+ struct commit_list *parents;
+ struct tree *tree;
+};
+
+extern const char *commit_type;
+
+struct commit *lookup_commit(unsigned char *sha1);
+
+int parse_commit(struct commit *item);
+
+void free_commit_list(struct commit_list *list);
+
+#endif /* COMMIT_H */