Name
__mempcpy -- copy given number of bytes of source to destination
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 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.