Implemented every function from Part 1.
authorLukas Jiriste <ljiriste@student.42prague.com>
Tue, 15 Aug 2023 11:03:47 +0000 (13:03 +0200)
committerLukas Jiriste <ljiriste@student.42prague.com>
Tue, 15 Aug 2023 11:03:47 +0000 (13:03 +0200)
commitc9219cab4867c2484e6ca1276ceb8c468e9980ec
tree5d24b77e624e2812822a877d11608b614ae10f99
parentc378c27ef99a2b585ffccc6b76e6688f50a7f63f
Implemented every function from Part 1.
Added libft.h header and Makefile.
Everything passes norminette and compiles to libft.a on make command.
23 files changed:
Makefile [new file with mode: 0644]
ft_atoi.c [new file with mode: 0644]
ft_calloc.c [new file with mode: 0644]
ft_isascii.c [new file with mode: 0644]
ft_islower.c
ft_isprint.c [new file with mode: 0644]
ft_isspace.c [new file with mode: 0644]
ft_isupper.c
ft_memchr.c [new file with mode: 0644]
ft_memcmp.c [new file with mode: 0644]
ft_memmove.c
ft_memset.c
ft_strchr.c [new file with mode: 0644]
ft_strdup.c [new file with mode: 0644]
ft_strlcat.c
ft_strlcpy.c
ft_strlen.c
ft_strncmp.c [new file with mode: 0644]
ft_strnstr.c [new file with mode: 0644]
ft_strrchr.c [new file with mode: 0644]
ft_tolower.c [new file with mode: 0644]
ft_toupper.c [new file with mode: 0644]
libft.h [new file with mode: 0644]