ft_memset - kibotrel/42-Libft GitHub Wiki

void	*ft_memset(void *b, int c, size_t len)

Description :

Puts the firsts len bytes of the memory area b to the value c.

Return Value :

Returns a pointer on b.

Source code