加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
crc.h 397 Bytes
一键复制 编辑 原始数据 按行查看 历史
/* $Id$*/
#ifndef _CRC_H_
#define _CRC_H_
#include "str.h"
#define CRC16_LEN 4
extern unsigned long int crc_32_tab[];
extern unsigned short int ccitt_tab[];
extern unsigned short int crc_16_tab[];
unsigned short crcitt_string( char *s, int len );
void crcitt_string_array( char *dst, str src[], int size );
void crc32_uint(str *source_string, unsigned int *hash_ret);
#endif /* _CRC_H_ */
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化