ft_atoi.c | ||
ft_bzero.c | ||
ft_calloc.c | ||
ft_isalnum.c | ||
ft_isalpha.c | ||
ft_isascii.c | ||
ft_isdigit.c | ||
ft_isprint.c | ||
ft_itoa.c | ||
ft_lstadd_back.c | ||
ft_lstadd_front.c | ||
ft_lstclear.c | ||
ft_lstdelone.c | ||
ft_lstiter.c | ||
ft_lstlast.c | ||
ft_lstmap.c | ||
ft_lstnew.c | ||
ft_lstsize.c | ||
ft_memchr.c | ||
ft_memcmp.c | ||
ft_memcpy.c | ||
ft_memmove.c | ||
ft_memset.c | ||
ft_putchar_fd.c | ||
ft_putendl_fd.c | ||
ft_putnbr_fd.c | ||
ft_putstr_fd.c | ||
ft_split.c | ||
ft_strchr.c | ||
ft_strdup.c | ||
ft_striteri.c | ||
ft_strjoin.c | ||
ft_strlcat.c | ||
ft_strlcpy.c | ||
ft_strlen.c | ||
ft_strmapi.c | ||
ft_strncmp.c | ||
ft_strnstr.c | ||
ft_strrchr.c | ||
ft_strtrim.c | ||
ft_substr.c | ||
ft_tolower.c | ||
ft_toupper.c | ||
libft.h | ||
Makefile | ||
README.md |
Libft
This is my implementation of the Libft project for the 42 school.
Description
Libft is a library of standard functions written in C.
The purpose of the project is to recreate some of the functions from the standard C library
Getting Started
To compile the library, simply run make
in the root directory of the project. This will generate a static library called libft.a
.
To use the library in another project, simply include the header file libft.h
and link against the libft.a
library.
Usage
The library includes a wide range of functions, from basic string and memory manipulation functions to more complex data structure and input/output functions.
For detailed information on each function, see the header file libft.h
and the corresponding source file in the src
directory.
Resources
Authors
This project was created by Camille Chauvet. If you have any questions or suggestions, feel free to contact me.