42 school project: recode malloc, free, realloc, calloc
Launch the Makefile command in the root repository : make
When libft_malloc.so
is ready to use. Launch ./run.sh
with a program using those functions.
void *malloc(size_t size);
void free(void *ptr);
void *realloc(void *ptr, size_t size);
void *calloc(size_t count, size_t size);
void *reallocf(void *ptr, size_t size);