__mempcpy

Name

__mempcpy -- copy given number of bytes of source to destination

Synopsis

#include <string.h>

void * __mempcpy(void * restrict dest, const void * restrict src, size_t n);

Description

__mempcpy() copies n bytes of src to dest, returning a pointer to the byte after the last written byte.

__mempcpy() is not in the source standard; it is only in the binary standard.