removing the libft of rparodi
This commit is contained in:
parent
0391323626
commit
be6038dcc8
523 changed files with 724 additions and 3336 deletions
20
libft/src/ft_string/ft_mem/ft_free_2d.c
Normal file
20
libft/src/ft_string/ft_mem/ft_free_2d.c
Normal file
|
|
@ -0,0 +1,20 @@
|
|||
/* ************************************************************************** */
|
||||
/* */
|
||||
/* ::: :::::::: */
|
||||
/* 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);
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue