libft
is a custom C library that provides a collection of functions covering fundamental operations in C programming. This library is designed to be reusable and serves as a helpful utility for various C projects.
- A C compiler (e.g., GCC)
- Make sure to have
make
installed for easy compilation (optional but recommended)
-
Clone the repository:
git clone https://github.com/lhaibadesigns/libft.git
-
Build the library:
cd libft make
-
To use libft in your C projects, include the libft.h header file and link against the compiled library (libft.a).
#include "libft.h" int main() { // Your code using libft functions return 0; }
- Detailed documentation for each function in
libft
is provided in the libft.h header file. - You can also refer to the source code for implementation details.
- This work is published under the terms of 42 Unlicense.