alloc.h
来自「非常好用的可移植的多平台C/C++源代码编辑器」· C头文件 代码 · 共 19 行
H
19 行
/*
* -= Copyright 2005 Tim Baker (treectrl@hotmail.com) =-
*
* This file is part of depslib.
*
* License is hereby granted to use this software and distribute it
* freely, as long as this copyright notice is retained and modifications
* are clearly marked.
*
* ALL WARRANTIES ARE HEREBY DISCLAIMED.
*/
typedef struct _alloc ALLOC;
extern ALLOC *alloc_init(int size, int nel);
extern char *alloc_enter(ALLOC *chain);
extern ALLOC *alloc2_init(int size);
extern char *alloc2_enter(ALLOC *chain, int size);
extern void alloc_free(ALLOC *chain);
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?