realloc function

MemoryPointer<RVoid> realloc(
  1. MemoryPointer<RType> oldPtr,
  2. int oldSize,
  3. int newSize
)

Implementation

MemoryPointer<RVoid> realloc(MemoryPointer oldPtr, int oldSize, int newSize)
  => $.Utils.realloc(oldPtr, oldSize, newSize);