Function libyml::externs::malloc

source ·
pub unsafe fn malloc(size: u64) -> *mut c_void
Expand description

Allocates memory.

§Safety

This function is unsafe because it directly manipulates raw memory. The caller must ensure that the allocated memory is properly managed and freed when no longer needed.