Added a way to manually test the Malloc function from the shell's command line.

This commit is contained in:
2019-08-31 17:50:14 -05:00
parent a587fd6fe2
commit 658a380f9a
8 changed files with 176 additions and 51 deletions
+2
View File
@@ -11,6 +11,8 @@ typedef struct MemoryChunk
bool Allocated;
};
static struct MemoryChunk* First;
void MemoryManager(size_t start, size_t size);
void* Malloc(size_t size);