ft_strdel.c 999 B

12345678910111213141516171819
  1. /* ************************************************************************** */
  2. /* */
  3. /* ::: :::::::: */
  4. /* ft_strdel.c :+: :+: :+: */
  5. /* +:+ +:+ +:+ */
  6. /* By: bchanot <bchanot@students.42.fr> +#+ +:+ +#+ */
  7. /* +#+#+#+#+#+ +#+ */
  8. /* Created: 2015/11/25 18:14:35 by bchanot #+# #+# */
  9. /* Updated: 2015/12/07 18:27:05 by bchanot ### ########.fr */
  10. /* */
  11. /* ************************************************************************** */
  12. #include "libft.h"
  13. void ft_strdel(char **as)
  14. {
  15. if (as != NULL && *as != NULL)
  16. ft_memdel((void *)as);
  17. }