谁有用C语言编写的CRC-16校验形式的代码~?高分求
谁有用C语言编写的CRC-16校验形式的代码~?高分求
日期:2008-04-12 20:17:30 人气:1
#define crc16_polynomial 0x8005 // crc_16校验方式的多项式.
typedef unsigned char uchar;
typedef unsigned int uint;
typedef unsigned long ulong;
typedef enum tagboolean { false, true } bool;