Blame lib/mempcpy.c

Packit Service a2489d
/* Copy memory area and return pointer after last written byte.
Packit Service a2489d
   Copyright (C) 2003, 2007, 2009-2018 Free Software Foundation, Inc.
Packit Service a2489d
Packit Service a2489d
   This program is free software; you can redistribute it and/or modify
Packit Service a2489d
   it under the terms of the GNU General Public License as published by
Packit Service a2489d
   the Free Software Foundation; either version 3, or (at your option)
Packit Service a2489d
   any later version.
Packit Service a2489d
Packit Service a2489d
   This program is distributed in the hope that it will be useful,
Packit Service a2489d
   but WITHOUT ANY WARRANTY; without even the implied warranty of
Packit Service a2489d
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
Packit Service a2489d
   GNU General Public License for more details.
Packit Service a2489d
Packit Service a2489d
   You should have received a copy of the GNU General Public License
Packit Service a2489d
   along with this program; if not, see <https://www.gnu.org/licenses/>.  */
Packit Service a2489d
Packit Service a2489d
#include <config.h>
Packit Service a2489d
Packit Service a2489d
/* Specification.  */
Packit Service a2489d
#include <string.h>
Packit Service a2489d
Packit Service a2489d
/* Copy N bytes of SRC to DEST, return pointer to bytes after the
Packit Service a2489d
   last written byte.  */
Packit Service a2489d
void *
Packit Service a2489d
mempcpy (void *dest, const void *src, size_t n)
Packit Service a2489d
{
Packit Service a2489d
  return (char *) memcpy (dest, src, n) + n;
Packit Service a2489d
}