MP2: My, oh, my, oh, malloc!
 All Data Structures Files Functions Pages
contest.h
1 /*
2  * CS 241
3  * The University of Illinois
4  */
5 
6 #ifndef _CONTEST_H_
7 #define _CONTEST_H_
8 
9 typedef struct _alloc_stats_t
10 {
11  unsigned long long max_heap_used;
12 
13  unsigned long memory_uses;
14  unsigned long long memory_heap_sum;
16 
17 #endif