__mempcpy
Name
__mempcpy -- copy given number of bytes
of source to destination
Synopsis
extern ptr_t
__mempcpy(ptr_t restrict
dest
, const ptr_t
restrict
src
, size_t
n
);
Description
__mempcpy copies
n
bytes of source to
destination, returning pointer to bytes after the last written
byte.
__mempcpy is not in the source
standard; it is only in the binary standard.