diff options
author | Jannis Hoffmann <jannis@fehcom.de> | 2024-07-09 14:41:53 +0200 |
---|---|---|
committer | Jannis Hoffmann <jannis@fehcom.de> | 2024-07-09 14:41:53 +0200 |
commit | 5fadc0cbb8577c61d66bd6f19ceaf0507c11e23b (patch) | |
tree | 684758441f5b431d0008253243034b6a4a29417c /src/uint32p.c | |
parent | 249866e3d1e11dc72eaa1305f4bb479ded92ef38 (diff) |
initial clang-format
Diffstat (limited to 'src/uint32p.c')
-rw-r--r-- | src/uint32p.c | 42 |
1 files changed, 26 insertions, 16 deletions
diff --git a/src/uint32p.c b/src/uint32p.c index f3f04ea..7fe5237 100644 --- a/src/uint32p.c +++ b/src/uint32p.c @@ -7,41 +7,51 @@ @brief packing/unpacking 32 bit integer to/from char string */ -void uint32_pack(char s[4],uint32 u) +void uint32_pack(char s[4], uint32 u) { - s[0] = u & 255; u >>= 8; - s[1] = u & 255; u >>= 8; + s[0] = u & 255; + u >>= 8; + s[1] = u & 255; + u >>= 8; s[2] = u & 255; s[3] = u >> 8; } -void uint32_pack_big(char s[4],uint32 u) +void uint32_pack_big(char s[4], uint32 u) { - s[3] = u & 255; u >>= 8; - s[2] = u & 255; u >>= 8; + s[3] = u & 255; + u >>= 8; + s[2] = u & 255; + u >>= 8; s[1] = u & 255; s[0] = u >> 8; } -void uint32_unpack(char s[4],uint32 *u) +void uint32_unpack(char s[4], uint32 *u) { uint32 result; - result = (unsigned char) s[3]; result <<= 8; - result += (unsigned char) s[2]; result <<= 8; - result += (unsigned char) s[1]; result <<= 8; - result += (unsigned char) s[0]; + result = (unsigned char)s[3]; + result <<= 8; + result += (unsigned char)s[2]; + result <<= 8; + result += (unsigned char)s[1]; + result <<= 8; + result += (unsigned char)s[0]; *u = result; } -void uint32_unpack_big(char s[4],uint32 *u) +void uint32_unpack_big(char s[4], uint32 *u) { uint32 result; - result = (unsigned char) s[0]; result <<= 8; - result += (unsigned char) s[1]; result <<= 8; - result += (unsigned char) s[2]; result <<= 8; - result += (unsigned char) s[3]; + result = (unsigned char)s[0]; + result <<= 8; + result += (unsigned char)s[1]; + result <<= 8; + result += (unsigned char)s[2]; + result <<= 8; + result += (unsigned char)s[3]; *u = result; } |