17-simple-memory-management/mem_man_app.c
2025-03-08 16:49:22 +01:00

25 lines
No EOL
803 B
C

/*-----------------------------------------------------------------------------
* HTBLA-Leonding
*-----------------------------------------------------------------------------
* Title: Simple Memory Manager.
* Author: Marc Tismonar
*-----------------------------------------------------------------------------
* 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. */
return 0;
}