🧱 ft_bzero


📂 Category

Memory Functions

📁 Repository

LIB_FT

📝 File

ft_bzero.c


⚠️ Educational Warning

For learning purposes only.


🖥️ Prototype


void ft_bzero(void *s, size_t n);

💡 Note

Sets n bytes of memory to zero.


🧱 Description

Erases data in memory by zeroing out the first n bytes at pointer s.