bget.h
来自「这是一个智能的内存管理器」· C头文件 代码 · 共 31 行
H
31 行
/* Interface definitions for bget.c, the memory management package.*/#ifndef _#ifdef PROTOTYPES#define _(x) x /* If compiler knows prototypes */#else#define _(x) () /* It it doesn't */#endif /* PROTOTYPES */#endiftypedef long bufsize;void bpool _((void *buffer, bufsize len));void *bget _((bufsize size));void *bgetz _((bufsize size));void *bgetr _((void *buffer, bufsize newsize));void brel _((void *buf));void bectl _((int (*compact)(bufsize sizereq, int sequence), void *(*acquire)(bufsize size), void (*release)(void *buf), bufsize pool_incr));void bstats _((bufsize *curalloc, bufsize *totfree, bufsize *maxfree, long *nget, long *nrel));void bstatse _((bufsize *pool_incr, long *npool, long *npget, long *nprel, long *ndget, long *ndrel));void bufdump _((void *buf));void bpoold _((void *pool, int dumpalloc, int dumpfree));int bpoolv _((void *pool));
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?