malloc_wrappers.h 313 B

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