Go to file
Camille Chauvet 227ee63ec9 add subject
2023-03-27 15:55:49 +02:00
ft_atoi.c v2 2022-10-04 14:21:55 +02:00
ft_bzero.c m 2022-09-27 16:29:23 +02:00
ft_calloc.c kekw 2022-10-28 18:29:59 +02:00
ft_isalnum.c kekw 2022-10-28 18:29:59 +02:00
ft_isalpha.c m 2022-09-27 16:29:23 +02:00
ft_isascii.c m 2022-09-27 16:29:23 +02:00
ft_isdigit.c m 2022-09-27 16:29:23 +02:00
ft_isprint.c v2 2022-10-04 14:21:55 +02:00
ft_itoa.c v2 2022-10-04 14:21:55 +02:00
ft_lstadd_back.c d 2022-10-28 17:14:04 +02:00
ft_lstadd_front.c v2 2022-10-04 14:21:55 +02:00
ft_lstclear.c final 2022-10-21 15:32:43 +02:00
ft_lstdelone.c d 2022-10-05 21:04:45 +02:00
ft_lstiter.c d 2022-10-05 21:04:45 +02:00
ft_lstlast.c v2 2022-10-04 14:21:55 +02:00
ft_lstmap.c d 2022-10-05 21:04:45 +02:00
ft_lstnew.c v2 2022-10-04 14:21:55 +02:00
ft_lstsize.c v2 2022-10-04 14:21:55 +02:00
ft_memchr.c m 2022-09-27 16:29:23 +02:00
ft_memcmp.c m 2022-09-27 16:29:23 +02:00
ft_memcpy.c v2 2022-10-04 14:21:55 +02:00
ft_memmove.c v2 2022-10-04 14:21:55 +02:00
ft_memset.c m 2022-09-27 16:29:23 +02:00
ft_putchar_fd.c v2 2022-10-04 14:21:55 +02:00
ft_putendl_fd.c v2 2022-10-04 14:21:55 +02:00
ft_putnbr_fd.c v2 2022-10-04 14:21:55 +02:00
ft_putstr_fd.c v2 2022-10-04 14:21:55 +02:00
ft_split.c kekw 2022-10-28 19:23:50 +02:00
ft_strchr.c d 2022-10-05 21:04:45 +02:00
ft_strdup.c d 2022-10-05 21:04:45 +02:00
ft_striteri.c d 2022-10-04 22:04:23 +02:00
ft_strjoin.c v2 2022-10-04 14:21:55 +02:00
ft_strlcat.c v2 2022-10-04 14:21:55 +02:00
ft_strlcpy.c v2 2022-10-04 14:21:55 +02:00
ft_strlen.c m 2022-09-27 16:29:23 +02:00
ft_strmapi.c v2 2022-10-04 14:21:55 +02:00
ft_strncmp.c v2 2022-10-04 14:21:55 +02:00
ft_strnstr.c v2 2022-10-04 14:21:55 +02:00
ft_strrchr.c d 2022-10-05 21:04:45 +02:00
ft_strtrim.c v2 2022-10-04 14:21:55 +02:00
ft_substr.c d 2022-10-05 21:04:45 +02:00
ft_tolower.c v2 2022-10-04 14:21:55 +02:00
ft_toupper.c v2 2022-10-04 14:21:55 +02:00
libft.h final 2022-10-21 15:32:43 +02:00
Makefile kekw 2022-10-28 19:52:15 +02:00
README.md Add 'README.md' 2023-03-27 13:51:39 +00:00
subject.pdf add subject 2023-03-27 15:55:49 +02:00

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

  • The project subject
  • The standard C library documentation
  • The man pages for each function

Authors

This project was created by Camille Chauvet. If you have any questions or suggestions, feel free to contact me.