Memory Functions
LIB_FT
ft_bzero.c
For learning purposes only.
void ft_bzero(void *s, size_t n);
Sets n bytes of memory to zero.
n
Erases data in memory by zeroing out the first n bytes at pointer s.
s