1bb9dafe39
FossilOrigin-Name: f1def5fc963f9b5be6fdc11b12615815662405568b3ff991317983ad1a747523
32 lines
761 B
C
32 lines
761 B
C
/*
|
|
* Licensed under BSD 2-Clause License
|
|
*/
|
|
|
|
#ifndef MASTODONT_HOOKS_H
|
|
#define MASTODONT_HOOKS_H
|
|
#include <stddef.h>
|
|
|
|
#define mstdnt_malloc (*_mstdnt_hooks_def.malloc)
|
|
#define mstdnt_free (*_mstdnt_hooks_def.free)
|
|
#define mstdnt_calloc (*_mstdnt_hooks_def.calloc)
|
|
#define mstdnt_realloc (*_mstdnt_hooks_def.realloc)
|
|
|
|
struct mstdnt_hooks
|
|
{
|
|
void* (*malloc)(size_t size);
|
|
void (*free)(void* ptr);
|
|
void* (*calloc)(size_t nmemb, size_t size);
|
|
void* (*realloc)(void* ptr, size_t size);
|
|
};
|
|
|
|
/**
|
|
* Sets up mstdnt_hooks (and cJSON hooks)
|
|
*
|
|
* @param data Pointer to the mstdnt data
|
|
*/
|
|
void mstdnt_set_hooks(struct mstdnt_hooks* data);
|
|
|
|
/** Hooks for Mastodont functions */
|
|
extern struct mstdnt_hooks _mstdnt_hooks_def;
|
|
|
|
#endif // MASTODONT_HOOKS_H
|