函式名
coreleft 返回未使用記憶體的大小用法
unsigned coreleft(void);程式例
#include#include
int main(void)
{
printf("The difference between the highest allocated block and\n");
printf("thetop of the heap is: %lu bytes\n", (unsigned long) coreleft());
return 0;
}
coreleft--漢語釋義為:返回未使用記憶體的大小,用法為unsigned oreleftvoid)。