ft_bzero - kibotrel/42-Libft GitHub Wiki

void    ft_bzero(void *s, size_t n)

Description :

Sets the first n bytes in the memory area pointed by s to the value \0.

Return Value :

Nothing.

Source code