]> git.ipfire.org Git - thirdparty/git.git/blame - reftable/reftable-malloc.h
Merge branch 'tz/send-email-helpfix'
[thirdparty/git.git] / reftable / reftable-malloc.h
CommitLineData
ef8a6c62
HWN
1/*
2Copyright 2020 Google LLC
3
4Use of this source code is governed by a BSD-style
5license that can be found in the LICENSE file or at
6https://developers.google.com/open-source/licenses/bsd
7*/
8
9#ifndef REFTABLE_H
10#define REFTABLE_H
11
12#include <stddef.h>
13
14/* Overrides the functions to use for memory management. */
15void reftable_set_alloc(void *(*malloc)(size_t),
16 void *(*realloc)(void *, size_t), void (*free)(void *));
17
18#endif