From 5ec6074f0633939fd17d94111d10c6c6b062978c Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Sat, 27 Apr 2024 11:49:36 +0200 Subject: Adding upstream version 1:2.30.2. Signed-off-by: Daniel Baumann --- alloc.h | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 alloc.h (limited to 'alloc.h') diff --git a/alloc.h b/alloc.h new file mode 100644 index 0000000..371d388 --- /dev/null +++ b/alloc.h @@ -0,0 +1,21 @@ +#ifndef ALLOC_H +#define ALLOC_H + +struct alloc_state; +struct tree; +struct commit; +struct tag; +struct repository; + +void *alloc_blob_node(struct repository *r); +void *alloc_tree_node(struct repository *r); +void init_commit_node(struct commit *c); +void *alloc_commit_node(struct repository *r); +void *alloc_tag_node(struct repository *r); +void *alloc_object_node(struct repository *r); +void alloc_report(struct repository *r); + +struct alloc_state *allocate_alloc_state(void); +void clear_alloc_state(struct alloc_state *s); + +#endif -- cgit v1.2.3