-
Notifications
You must be signed in to change notification settings - Fork 0
/
ft_del.c
19 lines (17 loc) · 990 Bytes
/
ft_del.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_del.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: mesafi <mesafi@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2019/04/11 20:17:03 by mesafi #+# #+# */
/* Updated: 2020/01/20 13:28:27 by mesafi ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
void ft_del(void *src, size_t len)
{
ft_bzero(src, len);
ft_memdel(&src);
}