Libft is a C library containing a collection of common functions to aid in C programming. These functions include string manipulations, memory manipulations, operations on linked lists, etc.
The library includes the following main categories:
- String Manipulation (
ft_strlen,ft_strcpy,ft_strcat, etc.) - Memory Manipulation (
ft_memset,ft_bzero,ft_memcpy, etc.) - Linked Lists (
ft_lstnew,ft_lstadd_front,ft_lstsize, etc.) - Type Conversion (
ft_atoi,ft_itoa, etc.) - Math Operations (
ft_abs,ft_pow, etc.) - And much more.
- Clone this repository into your project:
git clone https://github.com/cypri1-dev/42_libft.git- Run the following command:
make- with bonus:
make bonus