I am porting a project to the iPhone and it uses realloc and memcpy which are not found. What is the header to include?
realloc
memcpy
It\'s a project mix
In C:
#include // memcpy #include //realloc
In C++, remove the .h and prefix with a c. In C++, they will be placed in the std namespace, but are also global.
.h
c
std