Merge branch 'jk/http-leakfixes' into ps/leakfixes-part-8
[git/gitster.git] / reftable / blocksource.h
blob659a27b4063e40cef132964e0658ec5f4312e092
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;
16 /* Create an in-memory block source for reading reftables */
17 void block_source_from_strbuf(struct reftable_block_source *bs,
18 struct strbuf *buf);
20 #endif