about summary refs log tree commit diff homepage
path: root/runtime/klee-libc/strcpy.c
diff options
context:
space:
mode:
Diffstat (limited to 'runtime/klee-libc/strcpy.c')
-rw-r--r--runtime/klee-libc/strcpy.c17
1 files changed, 17 insertions, 0 deletions
diff --git a/runtime/klee-libc/strcpy.c b/runtime/klee-libc/strcpy.c
new file mode 100644
index 00000000..0fbaf9a7
--- /dev/null
+++ b/runtime/klee-libc/strcpy.c
@@ -0,0 +1,17 @@
+//===-- strcpy.c ----------------------------------------------------------===//
+//
+//                     The KLEE Symbolic Virtual Machine
+//
+// This file is distributed under the University of Illinois Open Source
+// License. See LICENSE.TXT for details.
+//
+//===----------------------------------------------------------------------===//
+
+char *strcpy(char *to, const char *from) {
+  char *start = to;
+
+  while ((*to = *from))
+    ++to, ++from;
+
+  return start;
+}