Skip to content

memset : set an area of memory

#include <string.h>
void *memset(const void *dst, int c, size_t length);
```### Description
This function converts the argument c into an unsigned char and fills the first length characters of the array pointed to by dst to the value.### Returns
memset returns the value of m.
---
**Authoritative source**: BUSMASTER DITA help source `memset.dita`, compiled into `BUSMASTER.CHM` with the application.