MCPcopy Create free account
hub / github.com/git/git / packfile_store_new

Function packfile_store_new

packfile.c:2821–2828  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2819}
2820
2821struct packfile_store *packfile_store_new(struct odb_source *source)
2822{
2823 struct packfile_store *store;
2824 CALLOC_ARRAY(store, 1);
2825 store->source = source;
2826 strmap_init(&store->packs_by_path);
2827 return store;
2828}
2829
2830void packfile_store_free(struct packfile_store *store)
2831{

Callers 1

odb_source_files_newFunction · 0.85

Calls 1

strmap_initFunction · 0.85

Tested by

no test coverage detected