pub fn alloca_zeroed<T, F>(size: usize, callback: F) -> Twhere F: FnOnce(&mut [u8]) -> T,
Allocate a runtime length zeroed byte buffer on the stack, call callback with this buffer, and then deallocate the buffer.
callback
See alloca().
alloca()