pub unsafe extern "C" fn projectm_alloc_string(
    length: c_uint
) -> *mut c_char
Expand description

@brief Allocates memory for a string and returns the pointer.

To free the allocated memory, call projectm_free_string(). Do not use free()!

@return A pointer to a zero-initialized memory area.