9 lines
169 B
C
9 lines
169 B
C
#pragma once
|
|
|
|
#include <stdint.h>
|
|
|
|
void memory_reset_free_list();
|
|
void * memory_allocate(uint32_t size);
|
|
void memory_free(void * p);
|
|
bool memory_is_allocated(void * p);
|