From 52f4424f2dcffa5e20e55c52a5777ce9212d05c5 Mon Sep 17 00:00:00 2001 From: Mattias Andrée Date: Fri, 29 Oct 2021 23:00:19 +0200 Subject: First commit MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Mattias Andrée --- libparsepcf_parse_lsb_uint32__.c | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 libparsepcf_parse_lsb_uint32__.c (limited to 'libparsepcf_parse_lsb_uint32__.c') diff --git a/libparsepcf_parse_lsb_uint32__.c b/libparsepcf_parse_lsb_uint32__.c new file mode 100644 index 0000000..6ea37ab --- /dev/null +++ b/libparsepcf_parse_lsb_uint32__.c @@ -0,0 +1,14 @@ +/* See LICENSE file for copyright and license details. */ +#include "common.h" + + +uint32_t +libparsepcf_parse_lsb_uint32__(const void *buf) +{ + const uint8_t *bs = buf; + uint32_t a = (uint32_t)bs[0] << 0; + uint32_t b = (uint32_t)bs[1] << 8; + uint32_t c = (uint32_t)bs[2] << 16; + uint32_t d = (uint32_t)bs[3] << 24; + return a | b | c | d; +} -- cgit v1.2.3-70-g09d2