Everything

memcpy


Copies the contents of a source storage area of a specified length to a destination storage area.

[Format]

#include <string.h>

void *memcpy (void *s1, const void *s2, size_t n);

[Parameters]

s1 Pointer to destination storage area

s2 Pointer to source storage area

n Number of characters to be copied

[Return values]

s1 value