├── README.md ├── auteur ├── get_next_line.c ├── get_next_line.fr.pdf ├── get_next_line.h └── libft ├── Makefile ├── ft_atoi.c ├── ft_bzero.c ├── ft_isalnum.c ├── ft_isalpha.c ├── ft_isascii.c ├── ft_isdigit.c ├── ft_isprint.c ├── ft_itoa.c ├── ft_memalloc.c ├── ft_memccpy.c ├── ft_memchr.c ├── ft_memcmp.c ├── ft_memcpy.c ├── ft_memdel.c ├── ft_memmove.c ├── ft_memset.c ├── ft_putchar.c ├── ft_putchar_fd.c ├── ft_putendl.c ├── ft_putendl_fd.c ├── ft_putnbr.c ├── ft_putnbr_fd.c ├── ft_putstr.c ├── ft_putstr_fd.c ├── ft_strcat.c ├── ft_strchr.c ├── ft_strclr.c ├── ft_strcmp.c ├── ft_strcpy.c ├── ft_strdel.c ├── ft_strdup.c ├── ft_strequ.c ├── ft_striter.c ├── ft_striteri.c ├── ft_strjoin.c ├── ft_strlcat.c ├── ft_strlen.c ├── ft_strmap.c ├── ft_strmapi.c ├── ft_strncat.c ├── ft_strncmp.c ├── ft_strncpy.c ├── ft_strnequ.c ├── ft_strnew.c ├── ft_strnstr.c ├── ft_strrchr.c ├── ft_strsplit.c ├── ft_strstr.c ├── ft_strsub.c ├── ft_strtrim.c ├── ft_tolower.c ├── ft_toupper.c └── includes └── libft.h /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemys/Get-next-line/HEAD/README.md -------------------------------------------------------------------------------- /auteur: -------------------------------------------------------------------------------- 1 | aliandie 2 | -------------------------------------------------------------------------------- /get_next_line.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemys/Get-next-line/HEAD/get_next_line.c -------------------------------------------------------------------------------- /get_next_line.fr.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemys/Get-next-line/HEAD/get_next_line.fr.pdf -------------------------------------------------------------------------------- /get_next_line.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemys/Get-next-line/HEAD/get_next_line.h -------------------------------------------------------------------------------- /libft/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemys/Get-next-line/HEAD/libft/Makefile -------------------------------------------------------------------------------- /libft/ft_atoi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemys/Get-next-line/HEAD/libft/ft_atoi.c -------------------------------------------------------------------------------- /libft/ft_bzero.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemys/Get-next-line/HEAD/libft/ft_bzero.c -------------------------------------------------------------------------------- /libft/ft_isalnum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemys/Get-next-line/HEAD/libft/ft_isalnum.c -------------------------------------------------------------------------------- /libft/ft_isalpha.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemys/Get-next-line/HEAD/libft/ft_isalpha.c -------------------------------------------------------------------------------- /libft/ft_isascii.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemys/Get-next-line/HEAD/libft/ft_isascii.c -------------------------------------------------------------------------------- /libft/ft_isdigit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemys/Get-next-line/HEAD/libft/ft_isdigit.c -------------------------------------------------------------------------------- /libft/ft_isprint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemys/Get-next-line/HEAD/libft/ft_isprint.c -------------------------------------------------------------------------------- /libft/ft_itoa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemys/Get-next-line/HEAD/libft/ft_itoa.c -------------------------------------------------------------------------------- /libft/ft_memalloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemys/Get-next-line/HEAD/libft/ft_memalloc.c -------------------------------------------------------------------------------- /libft/ft_memccpy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemys/Get-next-line/HEAD/libft/ft_memccpy.c -------------------------------------------------------------------------------- /libft/ft_memchr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemys/Get-next-line/HEAD/libft/ft_memchr.c -------------------------------------------------------------------------------- /libft/ft_memcmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemys/Get-next-line/HEAD/libft/ft_memcmp.c -------------------------------------------------------------------------------- /libft/ft_memcpy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemys/Get-next-line/HEAD/libft/ft_memcpy.c -------------------------------------------------------------------------------- /libft/ft_memdel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemys/Get-next-line/HEAD/libft/ft_memdel.c -------------------------------------------------------------------------------- /libft/ft_memmove.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemys/Get-next-line/HEAD/libft/ft_memmove.c -------------------------------------------------------------------------------- /libft/ft_memset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemys/Get-next-line/HEAD/libft/ft_memset.c -------------------------------------------------------------------------------- /libft/ft_putchar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemys/Get-next-line/HEAD/libft/ft_putchar.c -------------------------------------------------------------------------------- /libft/ft_putchar_fd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemys/Get-next-line/HEAD/libft/ft_putchar_fd.c -------------------------------------------------------------------------------- /libft/ft_putendl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemys/Get-next-line/HEAD/libft/ft_putendl.c -------------------------------------------------------------------------------- /libft/ft_putendl_fd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemys/Get-next-line/HEAD/libft/ft_putendl_fd.c -------------------------------------------------------------------------------- /libft/ft_putnbr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemys/Get-next-line/HEAD/libft/ft_putnbr.c -------------------------------------------------------------------------------- /libft/ft_putnbr_fd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemys/Get-next-line/HEAD/libft/ft_putnbr_fd.c -------------------------------------------------------------------------------- /libft/ft_putstr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemys/Get-next-line/HEAD/libft/ft_putstr.c -------------------------------------------------------------------------------- /libft/ft_putstr_fd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemys/Get-next-line/HEAD/libft/ft_putstr_fd.c -------------------------------------------------------------------------------- /libft/ft_strcat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemys/Get-next-line/HEAD/libft/ft_strcat.c -------------------------------------------------------------------------------- /libft/ft_strchr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemys/Get-next-line/HEAD/libft/ft_strchr.c -------------------------------------------------------------------------------- /libft/ft_strclr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemys/Get-next-line/HEAD/libft/ft_strclr.c -------------------------------------------------------------------------------- /libft/ft_strcmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemys/Get-next-line/HEAD/libft/ft_strcmp.c -------------------------------------------------------------------------------- /libft/ft_strcpy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemys/Get-next-line/HEAD/libft/ft_strcpy.c -------------------------------------------------------------------------------- /libft/ft_strdel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemys/Get-next-line/HEAD/libft/ft_strdel.c -------------------------------------------------------------------------------- /libft/ft_strdup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemys/Get-next-line/HEAD/libft/ft_strdup.c -------------------------------------------------------------------------------- /libft/ft_strequ.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemys/Get-next-line/HEAD/libft/ft_strequ.c -------------------------------------------------------------------------------- /libft/ft_striter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemys/Get-next-line/HEAD/libft/ft_striter.c -------------------------------------------------------------------------------- /libft/ft_striteri.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemys/Get-next-line/HEAD/libft/ft_striteri.c -------------------------------------------------------------------------------- /libft/ft_strjoin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemys/Get-next-line/HEAD/libft/ft_strjoin.c -------------------------------------------------------------------------------- /libft/ft_strlcat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemys/Get-next-line/HEAD/libft/ft_strlcat.c -------------------------------------------------------------------------------- /libft/ft_strlen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemys/Get-next-line/HEAD/libft/ft_strlen.c -------------------------------------------------------------------------------- /libft/ft_strmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemys/Get-next-line/HEAD/libft/ft_strmap.c -------------------------------------------------------------------------------- /libft/ft_strmapi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemys/Get-next-line/HEAD/libft/ft_strmapi.c -------------------------------------------------------------------------------- /libft/ft_strncat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemys/Get-next-line/HEAD/libft/ft_strncat.c -------------------------------------------------------------------------------- /libft/ft_strncmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemys/Get-next-line/HEAD/libft/ft_strncmp.c -------------------------------------------------------------------------------- /libft/ft_strncpy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemys/Get-next-line/HEAD/libft/ft_strncpy.c -------------------------------------------------------------------------------- /libft/ft_strnequ.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemys/Get-next-line/HEAD/libft/ft_strnequ.c -------------------------------------------------------------------------------- /libft/ft_strnew.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemys/Get-next-line/HEAD/libft/ft_strnew.c -------------------------------------------------------------------------------- /libft/ft_strnstr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemys/Get-next-line/HEAD/libft/ft_strnstr.c -------------------------------------------------------------------------------- /libft/ft_strrchr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemys/Get-next-line/HEAD/libft/ft_strrchr.c -------------------------------------------------------------------------------- /libft/ft_strsplit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemys/Get-next-line/HEAD/libft/ft_strsplit.c -------------------------------------------------------------------------------- /libft/ft_strstr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemys/Get-next-line/HEAD/libft/ft_strstr.c -------------------------------------------------------------------------------- /libft/ft_strsub.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemys/Get-next-line/HEAD/libft/ft_strsub.c -------------------------------------------------------------------------------- /libft/ft_strtrim.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemys/Get-next-line/HEAD/libft/ft_strtrim.c -------------------------------------------------------------------------------- /libft/ft_tolower.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemys/Get-next-line/HEAD/libft/ft_tolower.c -------------------------------------------------------------------------------- /libft/ft_toupper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemys/Get-next-line/HEAD/libft/ft_toupper.c -------------------------------------------------------------------------------- /libft/includes/libft.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemys/Get-next-line/HEAD/libft/includes/libft.h --------------------------------------------------------------------------------