mirror of
https://github.com/git/git.git
synced 2024-11-08 16:39:24 +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>
25 lines
703 B
C
25 lines
703 B
C
#ifndef LOOSE_H
|
|
#define LOOSE_H
|
|
|
|
#include "khash.h"
|
|
|
|
struct repository;
|
|
|
|
struct loose_object_map {
|
|
kh_oid_map_t *to_compat;
|
|
kh_oid_map_t *to_storage;
|
|
};
|
|
|
|
void loose_object_map_init(struct loose_object_map **map);
|
|
void loose_object_map_clear(struct loose_object_map **map);
|
|
int repo_loose_object_map_oid(struct repository *repo,
|
|
const struct object_id *src,
|
|
const struct git_hash_algo *dest_algo,
|
|
struct object_id *dest);
|
|
int repo_add_loose_object_map(struct repository *repo, const struct object_id *oid,
|
|
const struct object_id *compat_oid);
|
|
int repo_read_loose_object_map(struct repository *repo);
|
|
int repo_write_loose_object_map(struct repository *repo);
|
|
|
|
#endif
|