18 lines
967 B
C
18 lines
967 B
C
/* ************************************************************************** */
|
|
/* */
|
|
/* ::: :::::::: */
|
|
/* ft_strdel.c :+: :+: :+: */
|
|
/* +:+ +:+ +:+ */
|
|
/* By: gtertysh <marvin@42.fr> +#+ +:+ +#+ */
|
|
/* +#+#+#+#+#+ +#+ */
|
|
/* Created: 2016/12/01 17:15:34 by gtertysh #+# #+# */
|
|
/* Updated: 2016/12/01 17:17:50 by gtertysh ### ########.fr */
|
|
/* */
|
|
/* ************************************************************************** */
|
|
|
|
#include "libft.h"
|
|
|
|
void ft_strdel(char **as)
|
|
{
|
|
ft_memdel((void **)as);
|
|
}
|