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/uint16_bswap.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/uint16_bswap.c')
-rw-r--r-- | src/libstddjb/uint16_bswap.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/libstddjb/uint16_bswap.c b/src/libstddjb/uint16_bswap.c new file mode 100644 index 0000000..6ab96ed --- /dev/null +++ b/src/libstddjb/uint16_bswap.c @@ -0,0 +1,9 @@ +/* ISC license. */ + +#include <stdint.h> +#include <skalibs/uint16.h> + +uint16_t uint16_bswap (uint16_t a) +{ + return (a & 0x00ffu) << 8 | (a & 0xff00u) >> 8 ; +} |