1*a939078aSHiroo HAYASHI /* Copy memory area and return pointer after last written byte.
2*a939078aSHiroo HAYASHI Copyright (C) 2003, 2007, 2009-2021 Free Software Foundation, Inc.
3*a939078aSHiroo HAYASHI
4*a939078aSHiroo HAYASHI This file is free software: you can redistribute it and/or modify
5*a939078aSHiroo HAYASHI it under the terms of the GNU Lesser General Public License as
6*a939078aSHiroo HAYASHI published by the Free Software Foundation; either version 2.1 of the
7*a939078aSHiroo HAYASHI License, or (at your option) any later version.
8*a939078aSHiroo HAYASHI
9*a939078aSHiroo HAYASHI This file is distributed in the hope that it will be useful,
10*a939078aSHiroo HAYASHI but WITHOUT ANY WARRANTY; without even the implied warranty of
11*a939078aSHiroo HAYASHI MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12*a939078aSHiroo HAYASHI GNU Lesser General Public License for more details.
13*a939078aSHiroo HAYASHI
14*a939078aSHiroo HAYASHI You should have received a copy of the GNU Lesser General Public License
15*a939078aSHiroo HAYASHI along with this program. If not, see <https://www.gnu.org/licenses/>. */
16*a939078aSHiroo HAYASHI
17*a939078aSHiroo HAYASHI #include <config.h>
18*a939078aSHiroo HAYASHI
19*a939078aSHiroo HAYASHI /* Specification. */
20*a939078aSHiroo HAYASHI #include <string.h>
21*a939078aSHiroo HAYASHI
22*a939078aSHiroo HAYASHI /* A function definition is only needed if HAVE_MEMPCPY is not defined. */
23*a939078aSHiroo HAYASHI #if !HAVE_MEMPCPY
24*a939078aSHiroo HAYASHI
25*a939078aSHiroo HAYASHI /* Copy N bytes of SRC to DEST, return pointer to bytes after the
26*a939078aSHiroo HAYASHI last written byte. */
27*a939078aSHiroo HAYASHI void *
mempcpy(void * dest,const void * src,size_t n)28*a939078aSHiroo HAYASHI mempcpy (void *dest, const void *src, size_t n)
29*a939078aSHiroo HAYASHI {
30*a939078aSHiroo HAYASHI return (char *) memcpy (dest, src, n) + n;
31*a939078aSHiroo HAYASHI }
32*a939078aSHiroo HAYASHI
33*a939078aSHiroo HAYASHI #endif
34