Everything

memcpy


Memory copy

[Classification]

Standard library

[Syntax]

#include <string.h>

void *memcpy(void *out, const void *in, size_t n);

[Return value]

Returns the value of out. The operation is undefined if the copy source and copy destination areas overlap.

[Description]

This function copies n bytes from an object indicated by in to an object indicated by out.