]> git.ipfire.org Git - thirdparty/git.git/blob - alloc.h
Merge tag 'l10n-2.24.0-rnd2' of https://github.com/git-l10n/git-po
[thirdparty/git.git] / alloc.h
1 #ifndef ALLOC_H
2 #define ALLOC_H
3
4 struct alloc_state;
5 struct tree;
6 struct commit;
7 struct tag;
8 struct repository;
9
10 void *alloc_blob_node(struct repository *r);
11 void *alloc_tree_node(struct repository *r);
12 void init_commit_node(struct repository *r, struct commit *c);
13 void *alloc_commit_node(struct repository *r);
14 void *alloc_tag_node(struct repository *r);
15 void *alloc_object_node(struct repository *r);
16 void alloc_report(struct repository *r);
17
18 struct alloc_state *allocate_alloc_state(void);
19 void clear_alloc_state(struct alloc_state *s);
20
21 #endif