note Help Needed
This wiki is the result of an ongoing community effort — thank you all for helping!
If you want to provide changes to this page then please click here.
heapspace
warning
This function starts with a lowercase letter.
Description
Returns the amount of memory available for the heap/stack in bytes.
Examples
public OnGameModeInit()
{
printf("Heapspace: %i kilobytes", heapspace() / 1024);
return 1;
}