Staging
v0.5.1
Revision c1d0038746537ba8fe62d1c51714f96cc541cd0e authored by Peter Krefting on 30 October 2019, 22:22:13 UTC, committed by Peter Krefting on 30 October 2019, 22:22:13 UTC
Signed-off-by: Peter Krefting <peter@softwolves.pp.se>
1 parent 5b7594a
Raw File
alloc.h
#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 repository *r, 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
back to top