Files
minimal-heap/minimal_heap_test.c
2026-06-08 03:40:22 +02:00

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()
{
}