ft_bzero - gabrielcoelhodacunha-old/42sp-libft GitHub Wiki

Description

Writes len zero bytes to the string b.

Implementation

void	ft_bzero(void *b, size_t len)
{
	ft_memset(b, '\0', len);
}

References