bzero()

This places n zero-valued bytes in the specified area. Here it its syntax:

void bzero(void *r, size_t n);

Here, r is the area that's pointed to by r and n is the n number of zero values bytes that are placed in the area that was pointed to by r.