about summary refs log tree commit diff homepage
path: root/runtime/Intrinsic/memcpy.c
blob: 14b98ce6d29aea8334f59ea4ffa532a8b9f90306 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
//===-- memcpy.c ----------------------------------------------------------===//
//
//                     The KLEE Symbolic Virtual Machine
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//

#include <stdlib.h>

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

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