mirror of
https://github.com/dimoniche/solarium.vlad.git
synced 2026-01-30 21:13:31 +03:00
10 lines
162 B
C
10 lines
162 B
C
#ifndef __CRC16_H__
|
|
#define __CRC16_H__
|
|
|
|
extern unsigned short crc16(unsigned char *buf, unsigned long len);
|
|
|
|
#define CRC16 crc16
|
|
|
|
#endif // #ifndef __CRC16_H__
|
|
|