Function stdio_memset
Defined in File string.h
Function Documentation
-
void *stdio_memset(void *dest, int c, size_t n)
Set memory.
Fills the first
n
bytes of the memory area pointed to bydest
with the constant bytec
.- Parameters:
dest – Destination of copy.
c – The byte to use.
n – # of bytes to copy.
- Returns:
Memory pointed to by dest.