начало

This commit is contained in:
2026-07-09 14:44:12 +03:00
parent b75b854555
commit 88ddb37225
26 changed files with 4823 additions and 0 deletions

10
crc16.h Normal file
View File

@@ -0,0 +1,10 @@
typedef unsigned short WORD;
typedef unsigned char byte;
unsigned int get_crc_ccitt(unsigned int crc, unsigned int *buf, unsigned long size );
unsigned int get_crc_16(unsigned int crc,unsigned int *buf,unsigned long size );
unsigned int get_crc_16b(unsigned int crc,unsigned int *buf,unsigned long size );
int get_crc16(unsigned int *buf, int size );
unsigned int get_crc32(unsigned long *num);