aboutsummaryrefslogtreecommitdiff
path: root/texinfo/libtxi/memcpy.c
blob: 521625464cdd107c5fc8ac90ef5a7019132abd0e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/* Copy LEN bytes starting at SRCADDR to DESTADDR.  Result undefined
   if the source overlaps with the destination.
   Return DESTADDR. */

#ifdef HAVE_CONFIG_H
#include <config.h>
#endif

char *
memcpy (destaddr, srcaddr, len)
     char *destaddr;
     const char *srcaddr;
     int len;
{
  char *dest = destaddr;

  while (len-- > 0)
    *destaddr++ = *srcaddr++;
  return dest;
}