ft_bzero: initial implementation
This commit is contained in:
parent
872595f75b
commit
c820425285
3 changed files with 23 additions and 3 deletions
18
ft_bzero.c
Normal file
18
ft_bzero.c
Normal file
|
|
@ -0,0 +1,18 @@
|
|||
/* ************************************************************************** */
|
||||
/* */
|
||||
/* ::: :::::::: */
|
||||
/* ft_bzero.c :+: :+: :+: */
|
||||
/* +:+ +:+ +:+ */
|
||||
/* By: kcolin <marvin@42.fr> +#+ +:+ +#+ */
|
||||
/* +#+#+#+#+#+ +#+ */
|
||||
/* Created: 2024/10/15 11:28:05 by kcolin #+# #+# */
|
||||
/* Updated: 2024/10/15 11:30:40 by kcolin ### ########.fr */
|
||||
/* */
|
||||
/* ************************************************************************** */
|
||||
|
||||
#include "libft.h"
|
||||
|
||||
void ft_bzero(void *b, t_size len)
|
||||
{
|
||||
ft_memset(b, 0, len);
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue