X-Git-Url: https://git.zerfleddert.de/cgi-bin/gitweb.cgi/proxmark3-svn/blobdiff_plain/0ec548dc2122f9bc0f0b536db5fa1a12f1f5c16a..905c55de2bbe642412b47ed4e92344096c817fac:/common/iso14443crc.c diff --git a/common/iso14443crc.c b/common/iso14443crc.c index 851546ae..d07a2871 100644 --- a/common/iso14443crc.c +++ b/common/iso14443crc.c @@ -6,9 +6,9 @@ // ISO14443 CRC calculation code. //----------------------------------------------------------------------------- -#include "../common/iso14443crc.h" +#include "iso14443crc.h" -static unsigned short UpdateCrc14443(unsigned char ch, unsigned short *lpwCrc) +unsigned short UpdateCrc14443(unsigned char ch, unsigned short *lpwCrc) { ch = (ch ^ (unsigned char) ((*lpwCrc) & 0x00FF)); ch = (ch ^ (ch << 4));