Bitstream Interpretation Library (BIL)  0.1
CRC32.hpp
Go to the documentation of this file.
1 
6 #pragma once
7 #ifndef BIL_CRC32_HPP
8 #define BIL_CRC32_HPP
9 
10 #include <boost/cstdint.hpp>
11 
12 namespace bil {
13 
22  boost::uint32_t calc8BitCRC32(boost::uint32_t oldCRC, boost::uint8_t data8Bit);
23 
32  boost::uint32_t calc5BitCRC32(boost::uint32_t oldCRC, boost::uint8_t data5Bit);
33 
34 }
35 
36 #endif