mirror of
https://github.com/git/git.git
synced 2026-02-27 10:25:07 +00:00
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>
This commit is contained in:
committed by
Junio C Hamano
parent
64dbeefbd2
commit
2ebaa2b45e
1
commit.h
1
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 *);
|
||||
|
||||
Reference in New Issue
Block a user