mirror of
https://github.com/Proxmark/proxmark3.git
synced 2024-11-14 12:45:26 +08:00
7 lines
111 B
C
7 lines
111 B
C
|
#ifndef CRC16_H__
|
||
|
#define CRC16_H__
|
||
|
|
||
|
unsigned short update_crc16(unsigned short crc, unsigned char c);
|
||
|
|
||
|
#endif
|