Description
Source
Call Graph
memset
Fills a memory region with the given value.


Syntax / parameters
void * memset (void *pBuffer, int value, size_t num)
|
Name |
Type |
Default |
Description |
pBuffer |
void *
|
|
Pointer to the start of the memory region to fill
|
value |
int
|
|
Value to fill the region with
|
num |
size_t
|
|
Size to fill in bytes
|
|
Return value |
void *
|
|
|
Description
Fills a memory region with the given value.
Returns a pointer to the memory region.
Source
The documentation for this Member was generated from the following file:
string.c