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_msb_uint16__.c | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 libparsepcf_parse_msb_uint16__.c (limited to 'libparsepcf_parse_msb_uint16__.c') diff --git a/libparsepcf_parse_msb_uint16__.c b/libparsepcf_parse_msb_uint16__.c new file mode 100644 index 0000000..9c899c4 --- /dev/null +++ b/libparsepcf_parse_msb_uint16__.c @@ -0,0 +1,12 @@ +/* See LICENSE file for copyright and license details. */ +#include "common.h" + + +uint16_t +libparsepcf_parse_msb_uint16__(const void *buf) +{ + const uint8_t *bs = buf; + uint16_t a = (uint16_t)bs[0] << 8; + uint16_t b = (uint16_t)bs[1] << 0; + return a | b; +} -- cgit v1.2.3-70-g09d2