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