"Initial commit to Gerrit"
[profile/ivi/gpsd.git] / crc24q.h
1 /* Interface for CRC-24Q cyclic redundancy chercksum code
2  *
3  * This file is Copyright (c) 2010 by the GPSD project
4  * BSD terms apply: see the file COPYING in the distribution root for details.
5  */
6 #ifndef _CRC24Q_H_
7 #define _CRC24Q_H_
8
9
10 extern void crc24q_sign(unsigned char *data, int len);
11
12 extern bool crc24q_check(unsigned char *data, int len);
13
14 extern unsigned crc24q_hash(unsigned char *data, int len);
15 #endif /* _CRC24Q_H_ */