make_buffer -- creates a new, empty buffer.
make_buffer (n_elements)
The number of elements (bytes) in the buffer.
A new buffer.
This function creates a new, empty buffer with n_elements number of bytes, all set to zero.
Gamma> make_buffer(5); #{\0\0\0\0\0} Gamma> make_buffer(12); #{\0\0\0\0\0\0\0\0\0\0\0\0} Gamma>
buffer, buffer_to_string