setmem() Assign a Value to Memory
#include <mem.h>
void setmem(addr,len,value);
void *addr; Address
int len; Length
char value; Value put in memory
setmem() sets the first 'len' bytes of the block pointed to by 'addr'
to the byte 'value'.
Returns: There is no return value.
Seealso: