2021-10-07 20:25:01 +00:00
|
|
|
/*
|
|
|
|
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;
|
2024-10-17 04:53:56 +00:00
|
|
|
struct reftable_buf;
|
2021-10-07 20:25:01 +00:00
|
|
|
|
|
|
|
/* Create an in-memory block source for reading reftables */
|
2024-10-17 04:53:59 +00:00
|
|
|
void block_source_from_buf(struct reftable_block_source *bs,
|
|
|
|
struct reftable_buf *buf);
|
2021-10-07 20:25:01 +00:00
|
|
|
|
|
|
|
#endif
|