jvm/c/memory_allocator.h
2025-01-09 16:40:50 -06:00

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);