summaryrefslogtreecommitdiff
path: root/src/libstddjb/uint64_bswapn.c
diff options
context:
space:
mode:
authorLaurent Bercot <ska-skaware@skarnet.org>2022-06-01 12:36:34 +0000
committerLaurent Bercot <ska@appnovation.com>2022-06-01 12:36:34 +0000
commite88276fdec7b3b94ec939f5eb1c8def004ee3878 (patch)
tree118f28d54fe208fe823e5e4cc775bbf377ea53a4 /src/libstddjb/uint64_bswapn.c
parent37b42c179bb00d05cb47c739cb95283548f84fb2 (diff)
downloadskalibs-e88276fdec7b3b94ec939f5eb1c8def004ee3878.tar.xz
Rework endianness conversion primitives
Signed-off-by: Laurent Bercot <ska@appnovation.com>
Diffstat (limited to 'src/libstddjb/uint64_bswapn.c')
-rw-r--r--src/libstddjb/uint64_bswapn.c10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/libstddjb/uint64_bswapn.c b/src/libstddjb/uint64_bswapn.c
new file mode 100644
index 0000000..afb7d1d
--- /dev/null
+++ b/src/libstddjb/uint64_bswapn.c
@@ -0,0 +1,10 @@
+/* ISC license. */
+
+#include <stddef.h>
+
+#include <skalibs/uint64.h>
+
+void uint64_bswapn (uint64_t *x, size_t n)
+{
+ while (n--) uint64_bswapp(x++) ;
+}