12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- #ifndef _SERVICES_CRC_CRC_H_
- #define _SERVICES_CRC_CRC_H_
- #include <linux/types.h>
- #ifndef __externC
- # ifdef __cplusplus
- # define __externC extern "C"
- # else
- # define __externC extern
- # endif
- #endif
- uint16_t crc16_ccitt(uint16_t crc_start, unsigned char *s, int len);
- #endif
|