Embedded TCP/IP stack
4.7.0
|
void fnet_memset | ( | void * | dest, |
fnet_uint8_t | value, | ||
fnet_size_t | n | ||
) |
Sets bytes in memory.
dest | Pointer to the buffer to be set. |
value | Value to be set. The value is passed as an int , but the function converts it to fnet_uint8_t . |
n | Number of bytes to be set. |
This function sets the first n
bytes of the memory area pointed to by dest
with the constant byte value
.