-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathft_bzero.c
23 lines (21 loc) · 1.01 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: tsomsa <tsomsa@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2022/02/22 14:20:55 by tsomsa #+# #+# */
/* Updated: 2022/02/22 14:21:11 by tsomsa ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
void ft_bzero(void *s, size_t n)
{
unsigned int i;
char *buf;
i = 0;
buf = s;
while (i < n)
buf[i++] = '\0';
}