mirror of
https://github.com/git/git
synced 2024-11-05 18:59:29 +00:00
23 lines
509 B
C
23 lines
509 B
C
|
/*
|
||
|
Copyright 2020 Google LLC
|
||
|
|
||
|
Use of this source code is governed by a BSD-style
|
||
|
license that can be found in the LICENSE file or at
|
||
|
https://developers.google.com/open-source/licenses/bsd
|
||
|
*/
|
||
|
|
||
|
#ifndef BLOCKSOURCE_H
|
||
|
#define BLOCKSOURCE_H
|
||
|
|
||
|
#include "system.h"
|
||
|
|
||
|
struct reftable_block_source;
|
||
|
|
||
|
/* Create an in-memory block source for reading reftables */
|
||
|
void block_source_from_strbuf(struct reftable_block_source *bs,
|
||
|
struct strbuf *buf);
|
||
|
|
||
|
struct reftable_block_source malloc_block_source(void);
|
||
|
|
||
|
#endif
|