| 12345678910111213141516171819 |
- /* ************************************************************************** */
- /* */
- /* ::: :::::::: */
- /* ft_strdel.c :+: :+: :+: */
- /* +:+ +:+ +:+ */
- /* By: bchanot <bchanot@students.42.fr> +#+ +:+ +#+ */
- /* +#+#+#+#+#+ +#+ */
- /* Created: 2015/11/25 18:14:35 by bchanot #+# #+# */
- /* Updated: 2015/12/07 18:27:05 by bchanot ### ########.fr */
- /* */
- /* ************************************************************************** */
- #include "libft.h"
- void ft_strdel(char **as)
- {
- if (as != NULL && *as != NULL)
- ft_memdel((void *)as);
- }
|