summaryrefslogtreecommitdiffstats
path: root/commit.h
diff options
context:
space:
mode:
authorRené Scharfe <l.s.r@web.de>2025-12-24 18:03:22 +0100
committerJunio C Hamano <gitster@pobox.com>2025-12-25 08:29:28 +0900
commit2ebaa2b45e752088fd03d03c484fe43a653deba8 (patch)
treec7c2bde9001839d19fd13aa86a31c3b5b5363a09 /commit.h
parent64dbeefbd24e02eb05ae3250e118c9552b7690fb (diff)
downloadgit-2ebaa2b45e752088fd03d03c484fe43a653deba8.tar.gz
git-2ebaa2b45e752088fd03d03c484fe43a653deba8.zip
commit: add commit_stack_init()
Add a function for initializing a struct commit_stack, for when static initialization is not possible or impractical. Signed-off-by: René Scharfe <l.s.r@web.de> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'commit.h')
-rw-r--r--commit.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/commit.h b/commit.h
index 81e047f820..7c01a76425 100644
--- a/commit.h
+++ b/commit.h
@@ -387,6 +387,7 @@ struct commit_stack {
};
#define COMMIT_STACK_INIT { 0 }
+void commit_stack_init(struct commit_stack *);
void commit_stack_push(struct commit_stack *, struct commit *);
struct commit *commit_stack_pop(struct commit_stack *);
void commit_stack_clear(struct commit_stack *);