This project has been created as part of the 42 curriculum by elopez-u.
This project is your very first project as a learner at 42. You will need to recode a few functions from the C standard library, as well as some other utility functions that you will use throughout your whole curriculum.
- Clone the repository:
git clone https://github.com/3ka1tz/libft.git- Move into it:
cd ~/libft/- Build the project:
makeTo use the library in your code, include the header:
#include "libft.h"When compiling your project, link the library by including it in your compilation command:
cc -Wall -Wextra -Werror main.c libft.a -o program_name