DESCRIPTION • BUILT WITH • INSTALLATION • USAGE •
Libft is a library of C functions created as part of the curriculum at 1337/42. The library contains a collection of commonly used functions that can be utilized in various C programming projects. It aims to provide a solid foundation for C programming by implementing essential functions for string manipulation, memory allocation, linked lists, and more.
- Clone the repository to your local machine:
git clone https://github.com/st-yes/42libft.git- Navigate to the library's directory:
cd 42libft- Compile (with bonus)
make && make bonus- add the header file to your project
#include "libft.h"- link the library during the compilation
gcc project.c libft.a -I ./Mandatory