Added a couple of wanted functions.
authorLukas Jiriste <ljiriste@student.42prague.com>
Mon, 14 Aug 2023 11:45:12 +0000 (13:45 +0200)
committerLukas Jiriste <ljiriste@student.42prague.com>
Mon, 14 Aug 2023 11:45:12 +0000 (13:45 +0200)
commitc378c27ef99a2b585ffccc6b76e6688f50a7f63f
treea95588717e0b09ceca3631347cb520847ac52ae0
Added a couple of wanted functions.
Also added 2 additional functions - islower and isupper.
These functions naturaly fit in and are used for more readible implementation of other functions.
Each .c file includes the library header libft.h (libft.h is not added in this commit).
12 files changed:
ft_bzero.c [new file with mode: 0644]
ft_isalnum.c [new file with mode: 0644]
ft_isalpha.c [new file with mode: 0644]
ft_isdigit.c [new file with mode: 0644]
ft_islower.c [new file with mode: 0644]
ft_isupper.c [new file with mode: 0644]
ft_memcpy.c [new file with mode: 0644]
ft_memmove.c [new file with mode: 0644]
ft_memset.c [new file with mode: 0644]
ft_strlcat.c [new file with mode: 0644]
ft_strlcpy.c [new file with mode: 0644]
ft_strlen.c [new file with mode: 0644]