ft_bzero
Subject
Understandable explanation
This function works the same way as the memset()
function, except you don't have to specify what character to write, it'll always be 0
(NUL
character).
This function does not return anything and if the number of characters to write you passed as size_t n
is 0
, bzero
does nothing.
Hints
ft_bzero.c
Commented solution
Last updated