Table of Contents Previous topic Next topic
C LIBRARY FUNCTIONS->Detailed Descriptions->memset()
Summary
#include <string.h>
| char *memset(void *dest,int c, size_t count); | Set buffer to a specified character |
| dest | Pointer to destination buffer |
| c | Character to set |
| count | Number of characters to set |