git/oidmap.c

#include "git-compat-util.h"
#include "hash.h"
#include "oidmap.h"

static int oidmap_neq(const void *hashmap_cmp_fn_data UNUSED,
		      const struct hashmap_entry *e1,
		      const struct hashmap_entry *e2,
		      const void *keydata)
{}

void oidmap_init(struct oidmap *map, size_t initial_size)
{}

void oidmap_free(struct oidmap *map, int free_entries)
{}

void *oidmap_get(const struct oidmap *map, const struct object_id *key)
{}

void *oidmap_remove(struct oidmap *map, const struct object_id *key)
{}

void *oidmap_put(struct oidmap *map, void *entry)
{}