| 25 | extern uint32_t crcbrother(const Bytes& bytes); |
| 26 | |
| 27 | static inline uint16_t crc16(uint16_t poly, const Bytes& bytes) |
| 28 | { |
| 29 | return crc16(poly, 0xffff, bytes); |
| 30 | } |
| 31 | |
| 32 | static inline uint16_t crc16ref(uint16_t poly, const Bytes& bytes) |
| 33 | { |
no outgoing calls
no test coverage detected