27 lines
1010 B
C
27 lines
1010 B
C
/* ************************************************************************** */
|
|
/* */
|
|
/* ::: :::::::: */
|
|
/* ft_strdel.c :+: :+: :+: */
|
|
/* +:+ +:+ +:+ */
|
|
/* By: hulamy <marvin@42.fr> +#+ +:+ +#+ */
|
|
/* +#+#+#+#+#+ +#+ */
|
|
/* Created: 2018/11/14 21:16:25 by hulamy #+# #+# */
|
|
/* Updated: 2019/03/25 15:19:54 by hulamy ### ########.fr */
|
|
/* */
|
|
/* ************************************************************************** */
|
|
|
|
/*
|
|
** free memory
|
|
*/
|
|
|
|
#include "libft.h"
|
|
|
|
void ft_strdel(char **as)
|
|
{
|
|
if (as && *as)
|
|
{
|
|
free(*as);
|
|
*as = 0;
|
|
}
|
|
}
|