From f6b7365dc8759d6df5d340e4a68fb75537c07be4 Mon Sep 17 00:00:00 2001 From: aqua Date: Sat, 31 Dec 2022 16:03:20 +0200 Subject: blake2: use makefiles instead of meson.build --- lib/endian.h | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 lib/endian.h (limited to 'lib/endian.h') diff --git a/lib/endian.h b/lib/endian.h new file mode 100644 index 0000000..70bc5f7 --- /dev/null +++ b/lib/endian.h @@ -0,0 +1,17 @@ +//===================================================================== +// spdx-license-identifier: ISC +//===================================================================== + +#pragma once + +#include + +// These functions convert the byte encoding of integer values from host byte order to and from little-endian and +// big-endian byte order +uint16_t htole16(uint16_t host_16b); +uint32_t htole32(uint32_t host_32b); +uint64_t htole64(uint64_t host_64b); + +uint16_t htobe16(uint16_t host_16b); +uint32_t htobe32(uint32_t host_32b); +uint64_t htobe64(uint64_t host_64b); -- cgit v1.2.1