summaryrefslogtreecommitdiff
path: root/commit.h
diff options
context:
space:
mode:
authorChristian Couder <chriscool@tuxfamily.org>2010-07-22 13:18:30 (GMT)
committerJunio C Hamano <gitster@pobox.com>2010-07-23 23:09:28 (GMT)
commit11af2aaed657d10dea083f5d5cb7f93bb96a7b70 (patch)
tree84a62e4309c818a2c600ea06f4d99db983f40a71 /commit.h
parent2c048a3038fd4d94e150fbc1dfd2242325ca7db6 (diff)
downloadgit-11af2aaed657d10dea083f5d5cb7f93bb96a7b70.zip
git-11af2aaed657d10dea083f5d5cb7f93bb96a7b70.tar.gz
git-11af2aaed657d10dea083f5d5cb7f93bb96a7b70.tar.bz2
revert: refactor code to find commit subject in find_commit_subject()
Signed-off-by: Christian Couder <chriscool@tuxfamily.org> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'commit.h')
-rw-r--r--commit.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/commit.h b/commit.h
index 26ec8c0..236cf13 100644
--- a/commit.h
+++ b/commit.h
@@ -40,6 +40,9 @@ int parse_commit_buffer(struct commit *item, void *buffer, unsigned long size);
int parse_commit(struct commit *item);
+/* Find beginning and length of commit subject. */
+int find_commit_subject(const char *commit_buffer, const char **subject);
+
struct commit_list * commit_list_insert(struct commit *item, struct commit_list **list_p);
unsigned commit_list_count(const struct commit_list *l);
struct commit_list * insert_by_date(struct commit *item, struct commit_list **list);