🧱 ft_memset


📂 Category

Memory Functions

📁 Repository

LIB_FT

📝 File

ft_memset.c


⚠️ Educational Warning

This material is for educational purposes only. Use it to understand concepts and develop your own solutions.


🖥️ Prototype


void *ft_memset(void *dest, int c, size_t len);


💡 Note

Fills a block of memory with a specific byte value, it works with brute memory.


🧱 Description

ft_memset fills the first len bytes of the memory area pointed to by dest with the constant byte c.