warning Not Translated
This page has not been translated into the language that your browser requested yet. The English content is being shown as a fallback.
If you want to contribute a translation for 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;
}