added ft_free_arr to make file and added include

This commit is contained in:
whaffman 2025-02-04 14:46:17 +01:00
parent fa48cbf189
commit 716aeca641
2 changed files with 2 additions and 1 deletions

View File

@ -28,7 +28,7 @@ VPATH = src:src/conversion:src/ft_printf:src/list:src/memory:src/output:\
SRC_CONVERSION = ft_atoi.c ft_itoa.c ft_tolower.c ft_toupper.c \
SRC_MEMORY = ft_memchr.c ft_memcmp.c ft_memcpy.c ft_memmove.c ft_memset.c \
ft_bzero.c ft_calloc.c
ft_bzero.c ft_calloc.c ft_free_arr.c
SRC_STRING = ft_isalnum.c ft_isalpha.c ft_isascii.c ft_isdigit.c ft_isprint.c \
ft_split.c ft_strchr.c ft_strdup.c ft_striteri.c ft_strjoin.c \

View File

@ -1,4 +1,5 @@
#include "libft.h"
#include <stdlib.h>
void ft_free_arr(char **arr)
{