20 lines
1,005 B
C
20 lines
1,005 B
C
/* ************************************************************************** */
|
|
/* */
|
|
/* ::: :::::::: */
|
|
/* ft_free_2d.c :+: :+: :+: */
|
|
/* +:+ +:+ +:+ */
|
|
/* By: bgoulard <bgoulard@student.42.fr> +#+ +:+ +#+ */
|
|
/* +#+#+#+#+#+ +#+ */
|
|
/* Created: 2024/05/09 09:32:28 by bgoulard #+# #+# */
|
|
/* Updated: 2024/05/28 23:47:22 by bgoulard ### ########.fr */
|
|
/* */
|
|
/* ************************************************************************** */
|
|
|
|
#include "ft_string.h"
|
|
#include <stdlib.h>
|
|
|
|
void ft_free_2d(void **arr)
|
|
{
|
|
ft_apply_2d(arr, free);
|
|
free(arr);
|
|
}
|