index
:
Libft
master
Reimplementation of libc functions
Thomas Vanbesien
about
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
ft_bzero.c
blob: 10f67bd191b569a74c585b0b9585e962d8335176 (
plain
)
1
2
3
4
5
6
7
#include
"libft.h"
void
ft_bzero
(
void
*
s
,
size_t
n
)
{
ft_memset
(
s
,
0
,
n
);
}