Libft aortigos
This commit is contained in:
18
ft_bzero.c
Normal file
18
ft_bzero.c
Normal file
@@ -0,0 +1,18 @@
|
||||
/* ************************************************************************** */
|
||||
/* */
|
||||
/* ::: :::::::: */
|
||||
/* ft_bzero.c :+: :+: :+: */
|
||||
/* +:+ +:+ +:+ */
|
||||
/* By: aortigos <aortigos@student.42malaga.com> +#+ +:+ +#+ */
|
||||
/* +#+#+#+#+#+ +#+ */
|
||||
/* Created: 2023/10/12 15:17:03 by aortigos #+# #+# */
|
||||
/* Updated: 2023/10/12 15:22:29 by aortigos ### ########.fr */
|
||||
/* */
|
||||
/* ************************************************************************** */
|
||||
|
||||
#include "libft.h"
|
||||
|
||||
void ft_bzero(void *ptr, size_t num)
|
||||
{
|
||||
ft_memset(ptr, 0, num);
|
||||
}
|
||||
Reference in New Issue
Block a user