diff --git a/src/include/gpxe/bitops.h b/src/include/gpxe/bitops.h new file mode 100644 index 00000000..9e2fc7cb --- /dev/null +++ b/src/include/gpxe/bitops.h @@ -0,0 +1,19 @@ +#ifndef _GPXE_BITOPS_H +#define _GPXE_BITOPS_H + +/** @file + * + * Bit operations + */ + +#include + +static inline uint32_t rol32 ( uint32_t data, unsigned int rotation ) { + return ( ( data << rotation ) | ( data >> ( 32 - rotation ) ) ); +} + +static inline uint32_t ror32 ( uint32_t data, unsigned int rotation ) { + return ( ( data >> rotation ) | ( data << ( 32 - rotation ) ) ); +} + +#endif /* _GPXE_BITOPS_H */