🧱 ft_memcpy


📂 Category

Memory Functions

📁 Repository

LIB_FT

📝 File

ft_memcpy.c


⚠️ Educational Warning

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


🖥️ Prototype


void	*ft_memcpy(void *dest, const void *src, size_t n);

💡 Note

Copies a block of memory from one location to another, byte by byte. Does not handle overlapping memory.


🧱 Description

ft_memcpy copies exactly n bytes from the memory area pointed to by src to the memory area pointed to by dest.