ft_strdel
This commit is contained in:
parent
689a103bb5
commit
32d984a9f7
5
Makefile
5
Makefile
@ -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
18
ft_strdel.c
Normal 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);
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user