1//************************************ bs::framework - Copyright 2018 Marko Pintera **************************************//
2//*********** Licensed under the MIT license. See LICENSE.md for full terms. This notice is not to be removed. ***********//
3#ifndef __MMALLOC_H__
4#define __MMALLOC_H__
5
6void* mmalloc_new_context();
7void mmalloc_free_context(void* context);
8void* mmalloc(void* context, int size);
9void mmfree(void* ptr);
10char* mmalloc_strdup(void* context, const char* input);
11
12#endif