This project involved creating libft
, a custom C library containing essential functions that replicate standard C library behavior.
In this project, I:
- Implemented basic functions such as
ft_strlen
,ft_memcpy
, andft_atoi
. - Created additional functions like
ft_substr
,ft_strjoin
, andft_split
. - Developed functions for string manipulation, memory allocation, and list operations, adhering to strict C norms and stability requirements.
I have used this library in most of my other projects at 42 School, making libft
a foundational tool for my C programming tasks.
To use this library, clone the repository and run make
to build the libft.a
archive:
git clone https://github.com/maksim-volkmann/Libft.git libft
cd libft
make