storage.h

来自「eC++编译器源码」· C头文件 代码 · 共 13 行

H
13
字号
#pragma Storage
#include <SYSTEM.h>

  /* Allocates space from the heap; a:=NIL if none; size is in TSIZE units */
void ALLOCATE(ADDRESS &a, unsigned int size);

    /* Deallocates space from the heap; a big chunk can be given back
       in pieces, if desired.  The implementation is free to omit the
       validity check on "size". It is the user's responsibilty to make
       sure that a/size pairs are valid. "a" is set to NIL*/
void DEALLOCATE(ADDRESS &a, unsigned int size);

⌨️ 快捷键说明

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