Skip to content

Latest commit

 

History

History
21 lines (18 loc) · 651 Bytes

README.md

File metadata and controls

21 lines (18 loc) · 651 Bytes

libft - a library of personnal implementations of some libc functions

1st project of my 42 cursus

Project Name Libft
Description My personal library of custom implementations of some libc functions
Technos C

Usage

Build the library

git clone https://github.com/GSantoine/libft.git
cd libft
make

Use the library

Since this a library, you can link it inside the Makefile of your project like so :

$(CC) $(CFLAGS) -Llibft -lft -c $< -o $@