1 #include <stdlib.h>
2 
3 void* malloc_with_check(size_t size);
4 void free_with_check(void *mem);
5 void* realloc_with_check(void *ptr, size_t size);
6 size_t get_alloc_count();
7 size_t get_allocation_size(const void *mem);
8 size_t get_alloc_bytes();
9 void set_max_alloc_bytes(size_t max_bytes);
10 size_t get_max_alloc_bytes();
11