-
Notifications
You must be signed in to change notification settings - Fork 10
/
ft_bzero.c
22 lines (19 loc) · 1013 Bytes
/
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
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_bzero.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: jaeskim <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2020/09/24 20:40:58 by jaeskim #+# #+# */
/* Updated: 2020/09/26 13:30:53 by jaeskim ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
/*
** ft_bzero - zero a byte string
*/
void ft_bzero(void *s, size_t n)
{
ft_memset(s, '\0', n);
}