__mempcpy

Name

__mempcpy -- copy N bytes of SRC to DEST

Synopsis

#include <string.h>

extern ptr_t __mempcpy(ptr_t restrict dest,
                       const ptr_t restrict src, size_t n));

Description

Copy N bytes of SRC to DEST, return pointer to bytes after the last written byte.

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