summaryrefslogtreecommitdiff
path: root/commit.c
diff options
context:
space:
mode:
authorCharvi Mendiratta <charvi077@gmail.com>2021-03-15 07:54:31 (GMT)
committerJunio C Hamano <gitster@pobox.com>2021-03-15 21:29:35 (GMT)
commit6e0e28877988f8b98eb1e5cf4d4c5d29cc0b7f77 (patch)
treeb6793671726d69ec5847ce61ee4e19db7c05800f /commit.c
parentfa153c1cd7a84accc83e97723af85cf0ab3869e7 (diff)
downloadgit-6e0e28877988f8b98eb1e5cf4d4c5d29cc0b7f77.zip
git-6e0e28877988f8b98eb1e5cf4d4c5d29cc0b7f77.tar.gz
git-6e0e28877988f8b98eb1e5cf4d4c5d29cc0b7f77.tar.bz2
sequencer: export and rename subject_length()
This function can be used in other parts of git. Let's move the function to commit.c and also rename it to make the name of the function more generic. Mentored-by: Christian Couder <chriscool@tuxfamily.org> Mentored-by: Phillip Wood <phillip.wood@dunelm.org.uk> Helped-by: Eric Sunshine <sunshine@sunshineco.com> Signed-off-by: Charvi Mendiratta <charvi077@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'commit.c')
-rw-r--r--commit.c14
1 files changed, 14 insertions, 0 deletions
diff --git a/commit.c b/commit.c
index bab8d5a..199c7e2 100644
--- a/commit.c
+++ b/commit.c
@@ -535,6 +535,20 @@ int find_commit_subject(const char *commit_buffer, const char **subject)
return eol - p;
}
+size_t commit_subject_length(const char *body)
+{
+ const char *p = body;
+ while (*p) {
+ const char *next = skip_blank_lines(p);
+ if (next != p)
+ break;
+ p = strchrnul(p, '\n');
+ if (*p)
+ p++;
+ }
+ return p - body;
+}
+
struct commit_list *commit_list_insert(struct commit *item, struct commit_list **list_p)
{
struct commit_list *new_list = xmalloc(sizeof(struct commit_list));