-
Notifications
You must be signed in to change notification settings - Fork 0
/
ft_strdel.c
22 lines (19 loc) · 1.03 KB
/
ft_strdel.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_strdel.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: aviholai <aviholai@student.hive.fi> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2022/01/17 16:38:06 by aviholai #+# #+# */
/* Updated: 2022/02/04 16:48:46 by aviholai ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
/*
** 'Strdel()' (string delete) frees and 'NULL's the appointed character table.
*/
void ft_strdel(char **as)
{
ft_memdel((void **)as);
}