mirror of
https://github.com/dimoniche/changer.git
synced 2026-01-30 01:03:30 +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 char len);
|
|
|
|
#define CRC16 crc16
|
|
|
|
#endif // #ifndef __CRC16_H__
|
|
|