#42 LIBFT
libft is the enhanced standard C library, with I/O functions, string managements, memory managements and much more.
- Compiling
- Clean
- Fclean
- Using Libft is used like any other library. Include the
make
or make libft.a
clean
(deletes all *.o files)
fclean
(execute clean
then deletes .a lib file)
libft.h
header in your projects, then run your project along with -L [location of .a] -l ft
Libft is memoryleaks free.