keithlisp/dbg_malloc.h

16 lines
258 B
C
Raw Permalink Normal View History

2021-09-22 13:54:29 +00:00
#ifndef _DBG_MALLOC_H
#define _DBG_MALLOC_H
#include <stddef.h>
//#define DBG_MALLOC_PRINT
extern size_t dbg_malloc_mem_usage;
extern size_t dbg_malloc_peak_usage;
void* dbg_malloc(size_t size);
void dbg_free(void* ptr);
size_t dbg_reset_peak();
#endif