blob: 1b3e3d7d0145be18b523ea836aaac3e84c06af4e [file] [log] [blame]
Stefan Beller90c62152018-03-23 18:20:55 +01001#ifndef OBJECT_STORE_H
2#define OBJECT_STORE_H
3
Eric Wongcf2dc1c2021-07-07 23:10:15 +00004#include "khash.h"
5#include "dir.h"
Elijah Newrena034e912023-05-16 06:34:06 +00006#include "object-store-ll.h"
Han Xin2b6070a2022-06-11 10:44:19 +08007
Eric Wongcf2dc1c2021-07-07 23:10:15 +00008KHASH_INIT(odb_path_map, const char * /* key: odb_path */,
Carlo Marcelo Arenas Belóndd3c8a72021-08-08 18:38:32 -07009 struct object_directory *, 1, fspathhash, fspatheq)
Eric Wongcf2dc1c2021-07-07 23:10:15 +000010
Stefan Beller90c62152018-03-23 18:20:55 +010011#endif /* OBJECT_STORE_H */