MCPcopy Index your code
hub / github.com/git/git / block_source_from_buf

Function block_source_from_buf

reftable/blocksource.c:87–93  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

85};
86
87void block_source_from_buf(struct reftable_block_source *bs,
88 struct reftable_buf *buf)
89{
90 assert(!bs->ops);
91 bs->ops = &reftable_buf_vtable;
92 bs->arg = buf;
93}
94
95struct file_block_source {
96 struct reftable_mmap mmap;

Calls

no outgoing calls