Files
linux-apfs/include/linux/bitrev.h
T

16 lines
241 B
C
Raw Normal View History

2006-12-08 02:36:25 -08:00
#ifndef _LINUX_BITREV_H
#define _LINUX_BITREV_H
#include <linux/types.h>
extern u8 const byte_rev_table[256];
static inline u8 bitrev8(u8 byte)
{
return byte_rev_table[byte];
}
extern u32 bitrev32(u32 in);
#endif /* _LINUX_BITREV_H */