📄 bget.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 + -