-
Notifications
You must be signed in to change notification settings - Fork 0
/
ft_bzero.c
23 lines (20 loc) · 1.02 KB
/
ft_bzero.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_bzero.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: mmita <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2022/09/28 15:12:20 by mmita #+# #+# */
/* Updated: 2022/09/28 16:53:10 by mmita ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
void *ft_bzero(void *b, size_t n)
{
unsigned char *ptr;
ptr = (unsigned char *)b;
while (n-- > 0)
*(ptr++) = 0;
return (0);
}