summaryrefslogtreecommitdiff
path: root/commit.h
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2024-07-02 09:27:59 -0700
committerJunio C Hamano <gitster@pobox.com>2024-07-02 09:27:59 -0700
commit2c2ddfb725929a58b71f01c86a38d02eb7e45d34 (patch)
treed97b54f2725c5953c2aa82bd0ef16aa15f6bcf1f /commit.h
parentae46703d1ee03e0dabb2ed214929b4ebe07331cc (diff)
parent28dc26dc337932d9e4df8f83f1e454ea6bbc0897 (diff)
Merge branch 'rs/remove-unused-find-header-mem' into maint-2.45
Code clean-up. * rs/remove-unused-find-header-mem: commit: remove find_header_mem()
Diffstat (limited to 'commit.h')
-rw-r--r--commit.h5
1 files changed, 0 insertions, 5 deletions
diff --git a/commit.h b/commit.h
index 62fe0d77a7..3084f591fd 100644
--- a/commit.h
+++ b/commit.h
@@ -280,17 +280,12 @@ void free_commit_extra_headers(struct commit_extra_header *extra);
/*
* Search the commit object contents given by "msg" for the header "key".
- * Reads up to "len" bytes of "msg".
* Returns a pointer to the start of the header contents, or NULL. The length
* of the header, up to the first newline, is returned via out_len.
*
* Note that some headers (like mergetag) may be multi-line. It is the caller's
* responsibility to parse further in this case!
*/
-const char *find_header_mem(const char *msg, size_t len,
- const char *key,
- size_t *out_len);
-
const char *find_commit_header(const char *msg, const char *key,
size_t *out_len);