/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* ft_bzero.c :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: thrieg +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2024/10/14 15:50:09 by thrieg #+# #+# */ /* Updated: 2025/02/16 19:03:30 by thrieg ### ########.fr */ /* */ /* ************************************************************************** */ #include "libft.h" void ft_bzero(void *s, size_t n) { ft_memset(s, '\0', n); }