"Libft" is my custom C library that I've developed during my time at 42 School. It re-implements various standard C library functions, providing a robust foundation for future C projects. This library includes functions for string manipulation, memory management, linked lists, and more.
https://github.com/rphlr/42-Subjects/blob/main/common-core/libft/en.subject.pdf
- Custom implementations of standard C library functions
- Utility functions for strings, memory, linked lists, and more
- Modular and reusable codebase
To clone and compile this project, follow these steps:
git clone https://github.com/your-username/Libft.git
cd Libft
make
After compilation, you can include libft.a in your projects:
#include "libft.h"
Link the library when compiling your projects:
gcc your_project.c -L. -lft -o your_project