GReallocFunc

Changes the size of the memory block pointed to by @data to @size bytes.

The function should have the same semantics as realloc().

alias GReallocFunc = void* function(void* data, size_t size)

Return Value

a pointer to the reallocated memory

Meta