From 2ebaa2b45e752088fd03d03c484fe43a653deba8 Mon Sep 17 00:00:00 2001 From: René Scharfe Date: Wed, 24 Dec 2025 18:03:22 +0100 Subject: commit: add commit_stack_init() MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Add a function for initializing a struct commit_stack, for when static initialization is not possible or impractical. Signed-off-by: René Scharfe Signed-off-by: Junio C Hamano --- commit.h | 1 + 1 file changed, 1 insertion(+) (limited to 'commit.h') 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 *); -- cgit v1.2.3