功 能: 返回未使用記憶體的大小
用 法: unsigned long coreleft(void);
基本介紹
- 外文名:coreleft
- 說明:函式符號
- 功 能:返回未使用記憶體的大小
- 用 法: unsigned long coreleft(void)
函式名: coreleft
功 能: 返回未使用記憶體的大小
用 法: unsigned long coreleft(void);
程式例:
#include <stdio.h>
#include <alloc.h>
int main(void)
{
printf("The difference between the highest allocated block and\n");
printf("the top of the heap is: %lu bytes\n", (unsigned long) coreleft());
return 0;
}