Libft is a library of useful functions that can be used in C programming projects. This project gives the opportunity to re-write those C functions, understand them, and learn to use them. It also provides a set of commonly used functions that are not included in the standard C library.
- String manipulation functions
- Memory allocation functions
- Linked list manipulation functions
- Character manipulation functions
- File I/O functions
- And more...
To use the libft library in your project, follow these steps:
- Clone the libft repository to your local machine.
- Include the
libft.hheader file in your source files:#include "libft.h" - Compile your project with the libft library:
gcc -o myprogram myprogram.c -L./libft -lft