This project combines my libft, ft_printf and get_next_line projects into a single library for easy use in other projects.
At 42 School, almost every project must be written in accordance to the Norm, the school's coding standard. As a result, the implementation of certain parts may appear strange and for sure had room for improvement.
To use this library, import the "include/libft.h" header into your files after compiling the library.
#include "include/libft.h"
To install the project, clone this repository :
$ git@github.com:julienhouyet/42-Libft.git
To compile the library, run :
$ make
To re-compile the library :
$ make re
To wipes all object files :
$ make clean
To delete the library and all object files
$ make fclean