ft_memmove: initial implementation

This was tricky to visualize, consider bringing pen and paper next time
This commit is contained in:
Khaïs COLIN 2024-10-15 14:29:15 +02:00
parent fc5aa8e037
commit b86949e284
3 changed files with 51 additions and 3 deletions

View file

@ -6,7 +6,7 @@
# By: kcolin <marvin@42.fr> +#+ +:+ +#+ #
# +#+#+#+#+#+ +#+ #
# Created: 2024/10/14 13:43:59 by kcolin #+# #+# #
# Updated: 2024/10/15 13:37:50 by kcolin ### ########.fr #
# Updated: 2024/10/15 13:56:10 by kcolin ### ########.fr #
# #
# **************************************************************************** #
@ -20,7 +20,8 @@ SOURCES = ft_isalpha.c \
ft_strlen.c \
ft_memset.c \
ft_bzero.c \
ft_memcpy.c
ft_memcpy.c \
ft_memmove.c
OBJECTS = $(SOURCES:.c=.o)
CC = gcc