]> git.kernelconcepts.de Git - metawatch.git/blob - crc16ccitt.h
Add CRC16 with reverse bit order
[metawatch.git] / crc16ccitt.h
1 #ifndef _CRC16_h
2 #define _CRC16_H
3
4 void crc16ccitt_init(void);
5 unsigned short crc16ccitt (unsigned char *data, int len);
6
7 #endif