mempcpy.c 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. /* Implement the mempcpy function.
  2. Copyright (C) 2003-2022 Free Software Foundation, Inc.
  3. Written by Kaveh R. Ghazi <ghazi@caip.rutgers.edu>.
  4. This file is part of the libiberty library.
  5. Libiberty is free software; you can redistribute it and/or
  6. modify it under the terms of the GNU Library General Public
  7. License as published by the Free Software Foundation; either
  8. version 2 of the License, or (at your option) any later version.
  9. Libiberty is distributed in the hope that it will be useful,
  10. but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  12. Library General Public License for more details.
  13. You should have received a copy of the GNU Library General Public
  14. License along with libiberty; see the file COPYING.LIB. If
  15. not, write to the Free Software Foundation, Inc., 51 Franklin Street - Fifth Floor,
  16. Boston, MA 02110-1301, USA. */
  17. /*
  18. @deftypefn Supplemental void* mempcpy (void *@var{out}, const void *@var{in}, @
  19. size_t @var{length})
  20. Copies @var{length} bytes from memory region @var{in} to region
  21. @var{out}. Returns a pointer to @var{out} + @var{length}.
  22. @end deftypefn
  23. */
  24. #include <ansidecl.h>
  25. #include <stddef.h>
  26. extern PTR memcpy (PTR, const PTR, size_t);
  27. PTR
  28. mempcpy (PTR dst, const PTR src, size_t len)
  29. {
  30. return (char *) memcpy (dst, src, len) + len;
  31. }