pub unsafe extern "C" fn duckdb_malloc(size: usize) -> *mut c_void
Expand description
Allocate size
bytes of memory using the duckdb internal malloc function. Any memory allocated in this manner
should be freed using duckdb_free
.
@param size The number of bytes to allocate. @return A pointer to the allocated memory region.