farcoreleft是一個函式名,功 能是 返回遠堆中未作用存儲區大小。
基本介紹
- 外文名:farcoreleft
- 功 能::返回遠堆中未作用存儲區大小
- 用 法:long farcoreleft(void);
- 意思:函式式
用 法: long farcoreleft(void);
程式例:
#include <stdio.h>
#include <alloc.h>
int main(void)
{
printf("The difference between the\
highest allocated block in the\
far\n");
printf("heap and the top of the far heap\
is: %lu bytes\n", farcoreleft());
return 0;
}