crc16.h 219 B

1234567891011121314
  1. #ifndef _CRC_CRC16_H
  2. #define _CRC_CRC16_H
  3. #include <stdint.h>
  4. #ifdef __cplusplus
  5. extern "C" {
  6. #endif /* __cplusplus */
  7. uint16_t crc16(const char *buf, int len);
  8. #ifdef __cplusplus
  9. }
  10. #endif /* __cplusplus */
  11. #endif