https://github.com/git/git
Revision ac83bc5054c2ac489166072334b4147ce6d0fccb authored by Junio C Hamano on 04 August 2023, 17:01:45 UTC, committed by Junio C Hamano on 04 August 2023, 17:52:31 UTC
Signed-off-by: Junio C Hamano <gitster@pobox.com>
1 parent 65e25ae
Raw File
Tip revision: ac83bc5054c2ac489166072334b4147ce6d0fccb authored by Junio C Hamano on 04 August 2023, 17:01:45 UTC
Git 2.42-rc0
Tip revision: ac83bc5
oidtree.h
#ifndef OIDTREE_H
#define OIDTREE_H

#include "cbtree.h"
#include "hash-ll.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