mirror of
https://github.com/git-for-windows/git.git
synced 2026-05-29 22:43:24 -05:00
revision: export commit_stack
Dynamic arrays of commit pointers are used in several places. Some of them use a custom struct to hold array, item count and capacity, others have them as separate variables linked by a common name part. Pick one succinct, clean implementation -- commit_stack -- and convert the different variants to it to reduce code duplication. 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
66ce5f8e88
commit
d8a17ef09b
10
commit.h
10
commit.h
@@ -381,4 +381,14 @@ int parse_buffer_signed_by_header(const char *buffer,
|
||||
const struct git_hash_algo *algop);
|
||||
int add_header_signature(struct strbuf *buf, struct strbuf *sig, const struct git_hash_algo *algo);
|
||||
|
||||
struct commit_stack {
|
||||
struct commit **items;
|
||||
size_t nr, alloc;
|
||||
};
|
||||
#define COMMIT_STACK_INIT { 0 }
|
||||
|
||||
void commit_stack_push(struct commit_stack *, struct commit *);
|
||||
struct commit *commit_stack_pop(struct commit_stack *);
|
||||
void commit_stack_clear(struct commit_stack *);
|
||||
|
||||
#endif /* COMMIT_H */
|
||||
|
||||
Reference in New Issue
Block a user