diff options
author | Laurent Bercot <ska-skaware@skarnet.org> | 2017-10-18 16:13:24 +0000 |
---|---|---|
committer | Laurent Bercot <ska-skaware@skarnet.org> | 2017-10-18 16:13:24 +0000 |
commit | 45923c08b00ccdfd888caf6d2b555a137c563988 (patch) | |
tree | 5dc167cf4b8e3ff372f59ca9fb6ba0940387c83c /src/libstddjb/uint32_pack.c | |
parent | 62a04cdd0b6811c07bbafae37fe906a36fa800b1 (diff) | |
download | skalibs-45923c08b00ccdfd888caf6d2b555a137c563988.tar.xz |
Better packing / unpacking code
Godbolted for x86_64 with gcc and clang.
Diffstat (limited to 'src/libstddjb/uint32_pack.c')
-rw-r--r-- | src/libstddjb/uint32_pack.c | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/src/libstddjb/uint32_pack.c b/src/libstddjb/uint32_pack.c index a5320e0..a06ccf1 100644 --- a/src/libstddjb/uint32_pack.c +++ b/src/libstddjb/uint32_pack.c @@ -1,12 +1,11 @@ /* ISC license. */ +#include <stdint.h> +#include <string.h> #include <skalibs/uint32.h> -#include <skalibs/bytestr.h> void uint32_pack (char *s, uint32_t u) { - ((unsigned char *)s)[0] = T8(u) ; u >>= 8 ; - ((unsigned char *)s)[1] = T8(u) ; u >>= 8 ; - ((unsigned char *)s)[2] = T8(u) ; u >>= 8 ; - ((unsigned char *)s)[3] = T8(u) ; + u = uint32_little(u) ; + memcpy(s, &u, sizeof(uint32_t)) ; } |