18 memcpy(new_data, ptr, size);
void free(void *ptr)
Deallocates allocated memory space.
void * realloc(void *ptr, size_t size)
Reallocates the given area of memory.
void * reallocf(void *ptr, size_t size)
Reallocates the given area of memory.
void * malloc(size_t size)
Allocates size bytes of uninitialized storage.
void * memcpy(void *__restrict dest, const void *__restrict src, size_t n)
Copies n characters from the object pointed to by src to the object pointed to by dest.