1
0
mirror of https://github.com/rkd77/elinks.git synced 2024-09-06 23:44:43 -04:00
elinks/src/util/memdebug.h
2007-01-02 21:25:20 +02:00

28 lines
616 B
C

#ifndef EL__UTIL_MEMDEBUG_H
#define EL__UTIL_MEMDEBUG_H
#ifdef DEBUG_MEMLEAK
/* TODO: Another file? */
struct mem_stats {
long true_amount;
long amount;
};
extern struct mem_stats mem_stats;
void *debug_mem_alloc(const unsigned char *, int, size_t);
void *debug_mem_calloc(const unsigned char *, int, size_t, size_t);
void debug_mem_free(const unsigned char *, int, void *);
void *debug_mem_realloc(const unsigned char *, int, void *, size_t);
void set_mem_comment(void *, const unsigned char *, int);
void check_memory_leaks(void);
#else
#define set_mem_comment(p, c, l)
#endif /* DEBUG_MEMLEAK */
#endif