Project Name | Libft |
---|---|
Description | My personal library of custom implementations of some libc functions |
Technos |
git clone https://github.com/GSantoine/libft.git
cd libft
make
Since this a library, you can link it inside the Makefile of your project like so :
$(CC) $(CFLAGS) -Llibft -lft -c $< -o $@