wip_parsing
This commit is contained in:
19
libft/mem/ft_bzero.c
Normal file
19
libft/mem/ft_bzero.c
Normal file
@ -0,0 +1,19 @@
|
||||
/* ************************************************************************** */
|
||||
/* */
|
||||
/* ::: :::::::: */
|
||||
/* ft_bzero.c :+: :+: :+: */
|
||||
/* +:+ +:+ +:+ */
|
||||
/* By: madumerg <madumerg@student.42.fr> +#+ +:+ +#+ */
|
||||
/* +#+#+#+#+#+ +#+ */
|
||||
/* Created: 2023/10/30 17:15:50 by madumerg #+# #+# */
|
||||
/* Updated: 2023/11/02 13:48:10 by madumerg ### ########.fr */
|
||||
/* */
|
||||
/* ************************************************************************** */
|
||||
|
||||
#include <stddef.h>
|
||||
#include "libft.h"
|
||||
|
||||
void ft_bzero(void *s, size_t count)
|
||||
{
|
||||
ft_memset(s, 0, count);
|
||||
}
|
Reference in New Issue
Block a user