Libft is a custom C library that reimplements standard libc functions and provides additional utility functions for memory manipulation, string handling, and linked lists. This library is designed to be reused in other projects.
To compile the library, run:
makeTo clean object files:
make cleanTo remove compiled files and the library:
make fcleanTo recompile everything:
make reTo compile and run tests
make testTo use this library in your project:
- Include the header file:
#include "libft.h"- Link the compiled library:
gcc your_program.c -L. -lft -o your_programThis project is part of the 42 school curriculum.