summaryrefslogtreecommitdiff
path: root/libiberty/bcopy.c
diff options
context:
space:
mode:
authorLorry Tar Creator <lorry-tar-importer@baserock.org>2014-12-23 14:38:46 +0000
committer <>2015-05-26 15:48:41 +0000
commit5500a97a2ad1735db5b35bc51cfb825c1f4c38df (patch)
treecc6e777c26142b88456ff03a672e1cb69215fc32 /libiberty/bcopy.c
downloadbinutils-tarball-master.tar.gz
Imported from /home/lorry/working-area/delta_binutils-tarball/binutils-2.25.tar.bz2.HEADbinutils-2.25master
Diffstat (limited to 'libiberty/bcopy.c')
-rw-r--r--libiberty/bcopy.c31
1 files changed, 31 insertions, 0 deletions
diff --git a/libiberty/bcopy.c b/libiberty/bcopy.c
new file mode 100644
index 0000000..f9b7a8a
--- /dev/null
+++ b/libiberty/bcopy.c
@@ -0,0 +1,31 @@
+/* bcopy -- copy memory regions of arbitary length
+
+@deftypefn Supplemental void bcopy (char *@var{in}, char *@var{out}, int @var{length})
+
+Copies @var{length} bytes from memory region @var{in} to region
+@var{out}. The use of @code{bcopy} is deprecated in new programs.
+
+@end deftypefn
+
+*/
+
+#include <stddef.h>
+
+void
+bcopy (const void *src, void *dest, size_t len)
+{
+ if (dest < src)
+ {
+ const char *firsts = (const char *) src;
+ char *firstd = (char *) dest;
+ while (len--)
+ *firstd++ = *firsts++;
+ }
+ else
+ {
+ const char *lasts = (const char *)src + (len-1);
+ char *lastd = (char *)dest + (len-1);
+ while (len--)
+ *lastd-- = *lasts--;
+ }
+}