diff options
Diffstat (limited to 'src/uint16p.c')
-rw-r--r-- | src/uint16p.c | 18 |
1 files changed, 10 insertions, 8 deletions
diff --git a/src/uint16p.c b/src/uint16p.c index 5dddf21..b470e50 100644 --- a/src/uint16p.c +++ b/src/uint16p.c @@ -7,34 +7,36 @@ @brief packing/unpacking 16 bit integer to/from char string */ -void uint16_pack(char s[2],uint16 u) +void uint16_pack(char s[2], uint16 u) { s[0] = u & 255; s[1] = u >> 8; } -void uint16_pack_big(char s[2],uint16 u) +void uint16_pack_big(char s[2], uint16 u) { s[1] = u & 255; s[0] = u >> 8; } -void uint16_unpack(char s[2],uint16 *u) +void uint16_unpack(char s[2], uint16 *u) { uint16 result; - result = (unsigned char) s[1]; result <<= 8; - result += (unsigned char) s[0]; + result = (unsigned char)s[1]; + result <<= 8; + result += (unsigned char)s[0]; *u = result; } -void uint16_unpack_big(char s[2],uint16 *u) +void uint16_unpack_big(char s[2], uint16 *u) { uint16 result; - result = (unsigned char) s[0]; result <<= 8; - result += (unsigned char) s[1]; + result = (unsigned char)s[0]; + result <<= 8; + result += (unsigned char)s[1]; *u = result; } |