malloc
Allocate the memory. The function allocates the memory of the specified size.
func uint malloc (
uint size
)
uint size
)
Parameters
size | The size of memory space to be allocated. |
Return value
The pointer to the allocated memory space or 0 in case of an error.
Related links | Source |