libft/memory/ft_bzero.c
Raphael ed64bd73d6
docs(memory): moving the actual documentation on the header
- The documentation on the header allow u to see on the files where the
header is inclued
2025-09-05 16:29:40 +02:00

19 lines
991 B
C

/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_bzero.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: rparodi <marvin@42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2023/11/07 16:43:13 by rparodi #+# #+# */
/* Updated: 2025/09/05 16:26:53 by rparodi ### ########.fr */
/* */
/* ************************************************************************** */
#include "memory.h"
#include <unistd.h>
void ft_bzero(void *s, size_t n)
{
ft_memset(s, 0, n);
}