This project consists on the creation of a C header file containing recreations of already existing functions. In my case, I did the bonus alongside the mandatory, so when you run make both parts are executed.
1- Clone this repository and enter it:
git clone https://github.com/reomelo/42Porto-libft.git && cd 42Porto-libft
2- Run make and compile your program with libft.a:
make && cc -Wall -Wextra -Werror main.c libft.a
make or make all - creates libft.a
make clean - wipes all object files
make fclean - deletes libft.a and all object files
make re - fclean + all
