pretty: clear signature check
[git/gitster.git] / reftable / reftable-basics.h
blob6e8e636b7166fd5fa13081e148be3219fa3b64f0
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 REFTABLE_BASICS_H
10 #define REFTABLE_BASICS_H
12 #include <stddef.h>
14 /* Overrides the functions to use for memory management. */
15 void reftable_set_alloc(void *(*malloc)(size_t),
16 void *(*realloc)(void *, size_t), void (*free)(void *));
18 #endif