memdebug.h

来自「一个很有名的浏览器」· C头文件 代码 · 共 30 行

H
30
字号
/* $Id: memdebug.h,v 1.5 2004/10/13 15:34:47 zas Exp $ */#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(unsigned char *, int, size_t);void *debug_mem_calloc(unsigned char *, int, size_t, size_t);void debug_mem_free(unsigned char *, int, void *);void *debug_mem_realloc(unsigned char *, int, void *, size_t);void set_mem_comment(void *, unsigned char *, int);void check_memory_leaks(void);#else#define set_mem_comment(p, c, l)#endif /* DEBUG_MEMLEAK */#endif

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?