initial commit

This commit is contained in:
MarcUs7i 2025-03-08 13:36:49 +01:00
parent 2ec9609b51
commit 670c97dd16
15 changed files with 2373 additions and 2373 deletions

View file

@ -1,25 +1,25 @@
/*-----------------------------------------------------------------------------
* HTBLA-Leonding
*-----------------------------------------------------------------------------
* Title: Simple Memory Manager.
* Author: */<your name>;/*
*-----------------------------------------------------------------------------
* Description:
* The main application that uses memory manager.
*-----------------------------------------------------------------------------
*/
#include <stdio.h>
/**
* Allocate and free memory in various combinations,
* print statistics after each step,
* dump allocated units and memory content initially, in between and at the end
* of the program.
*/
int main(int argc, char *argv[]) {
/* Your implementation here. */
/*-----------------------------------------------------------------------------
* HTBLA-Leonding
*-----------------------------------------------------------------------------
* Title: Simple Memory Manager.
* Author: */<your name>;/*
*-----------------------------------------------------------------------------
* Description:
* The main application that uses memory manager.
*-----------------------------------------------------------------------------
*/
#include <stdio.h>
/**
* Allocate and free memory in various combinations,
* print statistics after each step,
* dump allocated units and memory content initially, in between and at the end
* of the program.
*/
int main(int argc, char *argv[]) {
/* Your implementation here. */
}