aboutsummaryrefslogtreecommitdiff
path: root/lib/libstand/bswap.c
diff options
context:
space:
mode:
authorMike Smith <msmith@FreeBSD.org>1998-08-20 08:19:55 +0000
committerMike Smith <msmith@FreeBSD.org>1998-08-20 08:19:55 +0000
commit6b4f575cb13a8eaf7f248ef7d2fc3c457e864af8 (patch)
tree596825930bb5a6cae7dbb8b539602dcac3b2ff78 /lib/libstand/bswap.c
parent5879dcdb05b9c66c5679c363a7a760e5813ee5e7 (diff)
downloadsrc-6b4f575cb13a8eaf7f248ef7d2fc3c457e864af8.tar.gz
src-6b4f575cb13a8eaf7f248ef7d2fc3c457e864af8.zip
This is libstand; a support library for standalone executables (eg. bootstrap
modules). Obtained from: NetBSD, with some architectural changes and many additions.
Notes
Notes: svn path=/cvs2svn/branches/MSMITH/; revision=38451
Diffstat (limited to 'lib/libstand/bswap.c')
-rw-r--r--lib/libstand/bswap.c37
1 files changed, 37 insertions, 0 deletions
diff --git a/lib/libstand/bswap.c b/lib/libstand/bswap.c
new file mode 100644
index 000000000000..1951509df93f
--- /dev/null
+++ b/lib/libstand/bswap.c
@@ -0,0 +1,37 @@
+/*
+ * Written by Manuel Bouyer <bouyer@netbsd.org>.
+ * Public domain.
+ */
+
+#if defined(LIBC_SCCS) && !defined(lint)
+static char *rcsid = "$NetBSD: bswap32.c,v 1.1 1997/10/09 15:42:33 bouyer Exp $";
+static char *rcsid = "$NetBSD: bswap64.c,v 1.1 1997/10/09 15:42:33 bouyer Exp $";
+#endif
+
+#include <sys/types.h>
+
+#undef bswap32
+#undef bswap64
+
+u_int32_t
+bswap32(x)
+ u_int32_t x;
+{
+ return ((x << 24) & 0xff000000 ) |
+ ((x << 8) & 0x00ff0000 ) |
+ ((x >> 8) & 0x0000ff00 ) |
+ ((x >> 24) & 0x000000ff );
+}
+
+u_int64_t
+bswap64(x)
+ u_int64_t x;
+{
+ u_int32_t *p = (u_int32_t*)&x;
+ u_int32_t t;
+ t = bswap32(p[0]);
+ p[0] = bswap32(p[1]);
+ p[1] = t;
+ return x;
+}
+