Name

memset function — Fills memory with a byte

Synopsis

void* memset(void* s, int c, size_t n)

The memset function fills the array s with n copies of c (converted to unsigned char). The return value is s.