Memory Functions
LIB_FT
ft_memset.c
This material is for educational purposes only. Use it to understand concepts and develop your own solutions.
void *ft_memset(void *dest, int c, size_t len);
Fills a block of memory with a specific byte value, it works with brute memory.
ft_memset
fills the first len
bytes of the memory area pointed to by dest
with the constant byte c
.