summaryrefslogtreecommitdiff
path: root/gnu/libexec/uucp/libuucp/memcpy.c
blob: 2258123752a0681dd4ae3edbc8267995849a7749 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/* memcpy.c
   Copy one memory buffer to another.  */

#include "uucp.h"

pointer
memcpy (ptoarg, pfromarg, c)
     pointer ptoarg;
     constpointer pfromarg;
     size_t c;
{
  char *pto = (char *) ptoarg;
  const char *pfrom = (const char *) pfromarg;

  while (c-- != 0)
    *pto++ = *pfrom++;
  return ptoarg;
}