Function Macro
GLibtry_new0
Description
Attempts to allocate n_structs
elements of type struct_type
, initialized
to 0’s, and returns NULL
on failure. Contrast with g_new0(), which aborts
the program on failure.
The returned pointer is cast to a pointer to the given type.
The function returns NULL
when n_structs
is 0 or if an overflow occurs.
Available since: | 2.8 |
This function is not directly available to language bindings |