25 lines
No EOL
803 B
C
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;
|
|
} |