Checks whether the allocator used by g_malloc() is the system's
malloc implementation. If it returns true memory allocated with
malloc() can be used interchangeably with memory allocated using g_malloc().
This function is useful for avoiding an extra copy of allocated memory returned
by a non-GLib-based API.
Returns boolean
if true, malloc() and g_malloc() can be mixed.
Deprecated
since 2.46: GLib always uses the system malloc, so this function always returns true.
Checks whether the allocator used by
g_malloc()is the system's malloc implementation. If it returnstruememory allocated withmalloc()can be used interchangeably with memory allocated usingg_malloc(). This function is useful for avoiding an extra copy of allocated memory returned by a non-GLib-based API.