gobj_realloc_func()

gobj_realloc_func()#

Returns the function pointer for memory reallocation used by the system.

Prototype

sys_realloc_fn_t gobj_realloc_func(void);

Parameters

Key

Type

Description

-

-

This function does not take any parameters.


Return Value

A function pointer of type sys_realloc_fn_t that points to the system’s memory reallocation function.

Notes

[‘The returned function pointer can be used to reallocate memory dynamically.’, ‘By default, it points to the internal _mem_realloc() function unless overridden by gobj_set_allocators().’]

Prototype

// Not applicable in JS

Prototype

# Not applicable in Python
Examples
// TODO C examples
// TODO JS examples
# TODO Python examples