mirror of
https://github.com/ToyB-Chan/minimal-heap.git
synced 2026-07-13 21:51:16 +02:00
27 lines
288 B
C
27 lines
288 B
C
#include "minimal_heap.h"
|
|
|
|
void* MIHP_PlatformRequestMemory(size_t size)
|
|
{
|
|
|
|
}
|
|
|
|
bool MIHP_PlatformFreeMemory(void* ptr, size_t size)
|
|
{
|
|
|
|
}
|
|
|
|
uint8_t MIHP_PlatformGetMinimalMemoryAlignment()
|
|
{
|
|
|
|
}
|
|
|
|
void MIHP_PlatformOnHeapCorruptionDetected(MIHP_HeapCorruptionInfo info)
|
|
{
|
|
|
|
}
|
|
|
|
int main()
|
|
{
|
|
}
|
|
|