mirror of
https://github.com/git/git.git
synced 2024-11-08 14:09:26 +01:00
8a676bdc5c
The "hash-ll.h" header was introduced via d1cbe1e6d8 (hash-ll.h: split out of hash.h to remove dependency on repository.h, 2023-04-22) to make explicit the split between hash-related functions that rely on the global `the_repository`, and those that don't. This split is no longer necessary now that we we have removed the reliance on `the_repository`. Merge "hash-ll.h" back into "hash.h". This causes some code units to not include "repository.h" anymore, which requires us to add some forward declarations. Signed-off-by: Patrick Steinhardt <ps@pks.im> Signed-off-by: Junio C Hamano <gitster@pobox.com>
23 lines
584 B
C
23 lines
584 B
C
#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 */
|