Function stdio_memset

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 by dest with the constant byte c.

Parameters:
  • dest – Destination of copy.

  • c – The byte to use.

  • n – # of bytes to copy.

Returns:

Memory pointed to by dest.