crc24q.h 397 B

12345678910111213141516
  1. /* Interface for CRC-24Q cyclic redundancy chercksum code
  2. *
  3. * This file is Copyright (c) 2010 by the GPSD project
  4. * SPDX-License-Identifier: BSD-2-clause
  5. */
  6. #ifndef _CRC24Q_H_
  7. #define _CRC24Q_H_
  8. extern void crc24q_sign(unsigned char *data, int len);
  9. extern bool crc24q_check(unsigned char *data, int len);
  10. extern unsigned crc24q_hash(unsigned char *data, int len);
  11. #endif /* _CRC24Q_H_ */