ft_strdel

This commit is contained in:
Tanguy MAZE 2018-04-06 19:15:56 +02:00
parent 689a103bb5
commit 32d984a9f7
2 changed files with 21 additions and 2 deletions

View File

@ -6,7 +6,7 @@
# By: tmaze <marvin@42.fr> +#+ +:+ +#+ #
# +#+#+#+#+#+ +#+ #
# Created: 2018/04/04 10:51:59 by tmaze #+# #+# #
# Updated: 2018/04/06 18:39:44 by tmaze ### ########.fr #
# Updated: 2018/04/06 19:04:49 by tmaze ### ########.fr #
# #
#******************************************************************************#
@ -47,7 +47,8 @@ SRCS = \
\
ft_memalloc.c \
ft_memdel.c \
ft_strnew.c
ft_strnew.c \
ft_strdel.c
OBJS = $(SRCS:.c=.o)
INCLS = -I.

18
ft_strdel.c Normal file
View File

@ -0,0 +1,18 @@
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_strdel.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: tmaze <marvin@42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2018/04/06 18:59:40 by tmaze #+# #+# */
/* Updated: 2018/04/06 19:14:01 by tmaze ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
void ft_strdel(char **as)
{
ft_memdel((void**)as);
}