I'm trying to figure out a simple way to have dynamic arrays for lite-c, sort of like std::vector for C++, and realloc() would really help in this.. I think it's a pretty important function to have on default anyway..
PrototypeCode:
void *realloc(
void *memblock,
size_t size
);
Required headers: <stdlib.h> and <malloc.h>
ps: I know I could program some sort of linked list without it but this would be so much more code..