diff options
author | Junio C Hamano <gitster@pobox.com> | 2022-02-05 09:42:29 -0800 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2022-02-05 09:42:29 -0800 |
commit | 492261a6def32669ddea7103ceb4d18c9b80903f (patch) | |
tree | 0671872002d2bf49d3094c966a588de16e72a4e6 /commit.h | |
parent | 7a9ae6d0d9cf979a2b1a018135370dd6331e505c (diff) | |
parent | cfc5cf428bcc8ff31748bba97baee31f529a30ea (diff) |
Merge branch 'jc/find-header'
Code clean-up.
* jc/find-header:
receive-pack.c: consolidate find header logic
Diffstat (limited to 'commit.h')
-rw-r--r-- | commit.h | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -290,12 +290,17 @@ 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); |