From 7996a3d79d55b7f879dfd62e202bbfe2963718d3 Mon Sep 17 00:00:00 2001 From: Samuel Thibault Date: Sat, 27 Jul 2013 22:15:01 +0000 Subject: really properly move files --- libdde-linux26/contrib/include/linux/bitrev.h | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 libdde-linux26/contrib/include/linux/bitrev.h (limited to 'libdde-linux26/contrib/include/linux/bitrev.h') diff --git a/libdde-linux26/contrib/include/linux/bitrev.h b/libdde-linux26/contrib/include/linux/bitrev.h new file mode 100644 index 00000000..7ffe03f4 --- /dev/null +++ b/libdde-linux26/contrib/include/linux/bitrev.h @@ -0,0 +1,16 @@ +#ifndef _LINUX_BITREV_H +#define _LINUX_BITREV_H + +#include + +extern u8 const byte_rev_table[256]; + +static inline u8 bitrev8(u8 byte) +{ + return byte_rev_table[byte]; +} + +extern u16 bitrev16(u16 in); +extern u32 bitrev32(u32 in); + +#endif /* _LINUX_BITREV_H */ -- cgit v1.2.3