Staging
v0.5.1
https://github.com/git/git
Raw File
Tip revision: df3c41adeb212432c53d93ce6ace5d5374dc6e11 authored by Junio C Hamano on 14 January 2022, 23:26:53 UTC
Git 2.35-rc1
Tip revision: df3c41a
oidtree.h
#ifndef OIDTREE_H
#define OIDTREE_H

#include "cbtree.h"
#include "hash.h"
#include "mem-pool.h"

struct oidtree {
	struct cb_tree tree;
	struct mem_pool mem_pool;
};

void oidtree_init(struct oidtree *);
void oidtree_clear(struct oidtree *);
void oidtree_insert(struct oidtree *, const struct object_id *);
int oidtree_contains(struct oidtree *, const struct object_id *);

typedef enum cb_next (*oidtree_iter)(const struct object_id *, void *data);
void oidtree_each(struct oidtree *, const struct object_id *,
			size_t oidhexsz, oidtree_iter, void *data);

#endif /* OIDTREE_H */
back to top