aboutsummaryrefslogtreecommitdiffstats
path: root/libft/src/ft_bzero.c
diff options
context:
space:
mode:
Diffstat (limited to 'libft/src/ft_bzero.c')
-rw-r--r--libft/src/ft_bzero.c21
1 files changed, 21 insertions, 0 deletions
diff --git a/libft/src/ft_bzero.c b/libft/src/ft_bzero.c
new file mode 100644
index 0000000..1f09fbe
--- /dev/null
+++ b/libft/src/ft_bzero.c
@@ -0,0 +1,21 @@
+/* ************************************************************************** */
+/* 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)
+{
+ ft_memset(s, 0, n);
+}