memset() - write a byte to byte string
#include <string.h> void * memset (void *b, int c, size_t len)
The memset(3) function writes len bytes of value c to the string b.
The memset(3) function returns its first argument, b.