diff options
Diffstat (limited to 'reftable/blocksource.h')
| -rw-r--r-- | reftable/blocksource.h | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/reftable/blocksource.h b/reftable/blocksource.h new file mode 100644 index 0000000000..a84a3ccd89 --- /dev/null +++ b/reftable/blocksource.h @@ -0,0 +1,21 @@ +/* +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 |
