15 lines
167 B
C
15 lines
167 B
C
#pragma once
|
|
|
|
#include <stdint.h>
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
void malloc_arena_reset();
|
|
void * malloc_arena(uint32_t size);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|