R3ReAlloc
void *R3ReAlloc(void *oldaddr, int oldsize, int newsize, int flags);
oldaddr - pointer to a memory to be reallocated
oldsize - the size of the memory chunk to be reallocated
newsize - new size
flags - R3MEMF_CLEAR to clear the new memory allocated
address of new memory chunk
Change the size of the memory chunk.