mirror of
https://github.com/git/git
synced 2024-11-04 16:17:49 +00:00
f177d49163
Adapt the name of the `strbuf` block source to no longer relate to this interface, but instead to the `reftable_buf` interface. Signed-off-by: Patrick Steinhardt <ps@pks.im> Signed-off-by: Taylor Blau <me@ttaylorr.com>
21 lines
473 B
C
21 lines
473 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;
|
|
struct reftable_buf;
|
|
|
|
/* Create an in-memory block source for reading reftables */
|
|
void block_source_from_buf(struct reftable_block_source *bs,
|
|
struct reftable_buf *buf);
|
|
|
|
#endif
|