This commit is contained in:
2026-06-08 03:40:22 +02:00
parent 404d628253
commit 16a390797c
7 changed files with 634 additions and 80 deletions

26
minimal_heap_test.c Normal file
View File

@@ -0,0 +1,26 @@
#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()
{
}