malloc0


Description:

public void* malloc0 (size_t n_bytes)

Allocates n_bytes bytes of memory, initialized to 0's.

If n_bytes is 0 it returns null.

If the allocation fails (because the system is out of memory), the program is terminated.

Parameters:

n_bytes

the number of bytes to allocate

Returns:

a pointer to the allocated memory


Namespace: GLib
Package: glib-2.0