├── Project ├── .macos ├── Makefile ├── 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_bonus.c ├── ft_lstadd_front_bonus.c ├── ft_lstclear_bonus.c ├── ft_lstdelone_bonus.c ├── ft_lstiter_bonus.c ├── ft_lstlast_bonus.c ├── ft_lstmap_bonus.c ├── ft_lstnew_bonus.c ├── ft_lstsize_bonus.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 ├── README.md └── Subject └── subject.pdf /Project/.macos: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Project/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samir-ouaammou/C-Library/HEAD/Project/Makefile -------------------------------------------------------------------------------- /Project/ft_atoi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samir-ouaammou/C-Library/HEAD/Project/ft_atoi.c -------------------------------------------------------------------------------- /Project/ft_bzero.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samir-ouaammou/C-Library/HEAD/Project/ft_bzero.c -------------------------------------------------------------------------------- /Project/ft_calloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samir-ouaammou/C-Library/HEAD/Project/ft_calloc.c -------------------------------------------------------------------------------- /Project/ft_isalnum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samir-ouaammou/C-Library/HEAD/Project/ft_isalnum.c -------------------------------------------------------------------------------- /Project/ft_isalpha.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samir-ouaammou/C-Library/HEAD/Project/ft_isalpha.c -------------------------------------------------------------------------------- /Project/ft_isascii.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samir-ouaammou/C-Library/HEAD/Project/ft_isascii.c -------------------------------------------------------------------------------- /Project/ft_isdigit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samir-ouaammou/C-Library/HEAD/Project/ft_isdigit.c -------------------------------------------------------------------------------- /Project/ft_isprint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samir-ouaammou/C-Library/HEAD/Project/ft_isprint.c -------------------------------------------------------------------------------- /Project/ft_itoa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samir-ouaammou/C-Library/HEAD/Project/ft_itoa.c -------------------------------------------------------------------------------- /Project/ft_lstadd_back_bonus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samir-ouaammou/C-Library/HEAD/Project/ft_lstadd_back_bonus.c -------------------------------------------------------------------------------- /Project/ft_lstadd_front_bonus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samir-ouaammou/C-Library/HEAD/Project/ft_lstadd_front_bonus.c -------------------------------------------------------------------------------- /Project/ft_lstclear_bonus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samir-ouaammou/C-Library/HEAD/Project/ft_lstclear_bonus.c -------------------------------------------------------------------------------- /Project/ft_lstdelone_bonus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samir-ouaammou/C-Library/HEAD/Project/ft_lstdelone_bonus.c -------------------------------------------------------------------------------- /Project/ft_lstiter_bonus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samir-ouaammou/C-Library/HEAD/Project/ft_lstiter_bonus.c -------------------------------------------------------------------------------- /Project/ft_lstlast_bonus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samir-ouaammou/C-Library/HEAD/Project/ft_lstlast_bonus.c -------------------------------------------------------------------------------- /Project/ft_lstmap_bonus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samir-ouaammou/C-Library/HEAD/Project/ft_lstmap_bonus.c -------------------------------------------------------------------------------- /Project/ft_lstnew_bonus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samir-ouaammou/C-Library/HEAD/Project/ft_lstnew_bonus.c -------------------------------------------------------------------------------- /Project/ft_lstsize_bonus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samir-ouaammou/C-Library/HEAD/Project/ft_lstsize_bonus.c -------------------------------------------------------------------------------- /Project/ft_memchr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samir-ouaammou/C-Library/HEAD/Project/ft_memchr.c -------------------------------------------------------------------------------- /Project/ft_memcmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samir-ouaammou/C-Library/HEAD/Project/ft_memcmp.c -------------------------------------------------------------------------------- /Project/ft_memcpy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samir-ouaammou/C-Library/HEAD/Project/ft_memcpy.c -------------------------------------------------------------------------------- /Project/ft_memmove.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samir-ouaammou/C-Library/HEAD/Project/ft_memmove.c -------------------------------------------------------------------------------- /Project/ft_memset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samir-ouaammou/C-Library/HEAD/Project/ft_memset.c -------------------------------------------------------------------------------- /Project/ft_putchar_fd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samir-ouaammou/C-Library/HEAD/Project/ft_putchar_fd.c -------------------------------------------------------------------------------- /Project/ft_putendl_fd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samir-ouaammou/C-Library/HEAD/Project/ft_putendl_fd.c -------------------------------------------------------------------------------- /Project/ft_putnbr_fd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samir-ouaammou/C-Library/HEAD/Project/ft_putnbr_fd.c -------------------------------------------------------------------------------- /Project/ft_putstr_fd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samir-ouaammou/C-Library/HEAD/Project/ft_putstr_fd.c -------------------------------------------------------------------------------- /Project/ft_split.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samir-ouaammou/C-Library/HEAD/Project/ft_split.c -------------------------------------------------------------------------------- /Project/ft_strchr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samir-ouaammou/C-Library/HEAD/Project/ft_strchr.c -------------------------------------------------------------------------------- /Project/ft_strdup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samir-ouaammou/C-Library/HEAD/Project/ft_strdup.c -------------------------------------------------------------------------------- /Project/ft_striteri.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samir-ouaammou/C-Library/HEAD/Project/ft_striteri.c -------------------------------------------------------------------------------- /Project/ft_strjoin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samir-ouaammou/C-Library/HEAD/Project/ft_strjoin.c -------------------------------------------------------------------------------- /Project/ft_strlcat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samir-ouaammou/C-Library/HEAD/Project/ft_strlcat.c -------------------------------------------------------------------------------- /Project/ft_strlcpy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samir-ouaammou/C-Library/HEAD/Project/ft_strlcpy.c -------------------------------------------------------------------------------- /Project/ft_strlen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samir-ouaammou/C-Library/HEAD/Project/ft_strlen.c -------------------------------------------------------------------------------- /Project/ft_strmapi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samir-ouaammou/C-Library/HEAD/Project/ft_strmapi.c -------------------------------------------------------------------------------- /Project/ft_strncmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samir-ouaammou/C-Library/HEAD/Project/ft_strncmp.c -------------------------------------------------------------------------------- /Project/ft_strnstr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samir-ouaammou/C-Library/HEAD/Project/ft_strnstr.c -------------------------------------------------------------------------------- /Project/ft_strrchr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samir-ouaammou/C-Library/HEAD/Project/ft_strrchr.c -------------------------------------------------------------------------------- /Project/ft_strtrim.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samir-ouaammou/C-Library/HEAD/Project/ft_strtrim.c -------------------------------------------------------------------------------- /Project/ft_substr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samir-ouaammou/C-Library/HEAD/Project/ft_substr.c -------------------------------------------------------------------------------- /Project/ft_tolower.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samir-ouaammou/C-Library/HEAD/Project/ft_tolower.c -------------------------------------------------------------------------------- /Project/ft_toupper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samir-ouaammou/C-Library/HEAD/Project/ft_toupper.c -------------------------------------------------------------------------------- /Project/libft.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samir-ouaammou/C-Library/HEAD/Project/libft.h -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samir-ouaammou/C-Library/HEAD/README.md -------------------------------------------------------------------------------- /Subject/subject.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samir-ouaammou/C-Library/HEAD/Subject/subject.pdf --------------------------------------------------------------------------------