aboutsummaryrefslogtreecommitdiff
path: root/test_mini/libft/src/str/ft_strdel.c
diff options
context:
space:
mode:
Diffstat (limited to 'test_mini/libft/src/str/ft_strdel.c')
-rw-r--r--test_mini/libft/src/str/ft_strdel.c18
1 files changed, 0 insertions, 18 deletions
diff --git a/test_mini/libft/src/str/ft_strdel.c b/test_mini/libft/src/str/ft_strdel.c
deleted file mode 100644
index 05cf064..0000000
--- a/test_mini/libft/src/str/ft_strdel.c
+++ /dev/null
@@ -1,18 +0,0 @@
-/* ************************************************************************** */
-/* */
-/* ::: :::::::: */
-/* ft_strdel.c :+: :+: :+: */
-/* +:+ +:+ +:+ */
-/* By: cacharle <marvin@42.fr> +#+ +:+ +#+ */
-/* +#+#+#+#+#+ +#+ */
-/* Created: 2019/10/07 10:39:14 by cacharle #+# #+# */
-/* Updated: 2019/11/20 01:58:27 by cacharle ### ########.fr */
-/* */
-/* ************************************************************************** */
-
-#include "libft.h"
-
-void ft_strdel(char **as)
-{
- ft_memdel((void*)as);
-}