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
nbytes of the memory area pointed to bydestwith the constant bytec.- Parameters:
dest – Destination of copy.
c – The byte to use.
n – # of bytes to copy.
- Returns:
Memory pointed to by dest.