summaryrefslogtreecommitdiffstats
path: root/libft/ft_bzero.c
diff options
context:
space:
mode:
Diffstat (limited to 'libft/ft_bzero.c')
-rw-r--r--libft/ft_bzero.c23
1 files changed, 0 insertions, 23 deletions
diff --git a/libft/ft_bzero.c b/libft/ft_bzero.c
deleted file mode 100644
index 05ff6b7..0000000
--- a/libft/ft_bzero.c
+++ /dev/null
@@ -1,23 +0,0 @@
-/* ************************************************************************** */
-/* LE - / */
-/* / */
-/* ft_bzero.c .:: .:/ . .:: */
-/* +:+:+ +: +: +:+:+ */
-/* By: rbousset <marvin@le-101.fr> +:+ +: +: +:+ */
-/* #+# #+ #+ #+# */
-/* Created: 2019/10/08 14:04:55 by rbousset #+# ## ## #+# */
-/* Updated: 2019/10/13 08:45:28 by rbousset ### #+. /#+ ###.fr */
-/* / */
-/* / */
-/* ************************************************************************** */
-
-#include "libft.h"
-#include <stddef.h>
-
-void
- ft_bzero(void *s, size_t n)
-{
- if (!s)
- return ;
- ft_memset(s, 0, n);
-}