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 | |
6 | void* mmalloc_new_context(); |
7 | void mmalloc_free_context(void* context); |
8 | void* mmalloc(void* context, int size); |
9 | void mmfree(void* ptr); |
10 | char* mmalloc_strdup(void* context, const char* input); |
11 | |
12 | #endif |