/* * mempcpy.c */ #include #include /* simply a wrapper around memcpy implementation */ void *mempcpy(void *dst, const void *src, size_t n) { return (char *)memcpy(dst, src, n) + n; }