⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 bget.h

📁 一个简单实用的内存管理程序
💻 H
字号:
/*

    Interface definitions for bget.c, the memory management package.

*/


#ifdef __cplusplus
extern "C" {
#endif

typedef long bufsize;

void	bpool	    (void *buffer, bufsize len);
void   *bget	    (bufsize size);
void	brel	    (void *buf);
void bstats(bufsize* curalloc, bufsize* totfree, bufsize* maxfree, long *nget, long* nrel);
#ifdef __cplusplus
}
#endif

⌨️ 快捷键说明

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