This repository was archived by the owner on Feb 28, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 26
Built‐in Functions
Nidin Vinayakan edited this page Mar 14, 2017
·
1 revision
Allocate memory block. Allocates a block of size bytes of memory, returning a pointer to the beginning of the block.
function malloc(size: int32): *uint8
The free() function frees the memory space pointed to by ptr, which must have been returned by a previous call to malloc()
function free(ptr:*uint8):void