This is my libft project from 42/1337.
It contains a collection of recreated C standard library functions and some additional utilities.
- ft_*.c β Implementations of standard C functions
- libft.h β Header file with all function prototypes
- Makefile β To compile the library
- Clone the repository:
git clone https://github.com/mohamedasbane/libft.git
cd libft
Compile the library:
bash
Copy code
make
This will generate libft.a in the folder.
π Usage
Include the library in your project:
c
Copy code
#include "libft.h"
Link the library when compiling:
bash
Copy code
gcc main.c -L. -lft -o my_program
βοΈ Author
Mohamed Asbane
π§ Email: mohamedasbane3@gmail.com
π GitHub: mohamedasbane
βοΈ License
This project is licensed under the MIT License β see the LICENSE file for details.