The twelfth batch
[alt-git.git] / reftable / blocksource.h
bloba84a3ccd891d64bab842ee1d682444cdf27d7053
1 /*
2 Copyright 2020 Google LLC
4 Use of this source code is governed by a BSD-style
5 license that can be found in the LICENSE file or at
6 https://developers.google.com/open-source/licenses/bsd
7 */
9 #ifndef BLOCKSOURCE_H
10 #define BLOCKSOURCE_H
12 #include "system.h"
14 struct reftable_block_source;
15 struct reftable_buf;
17 /* Create an in-memory block source for reading reftables */
18 void block_source_from_buf(struct reftable_block_source *bs,
19 struct reftable_buf *buf);
21 #endif