X-Git-Url: https://git.zerfleddert.de/cgi-bin/gitweb.cgi/proxmark3-svn/blobdiff_plain/39864b0bd41dd5e896bcb8eeabcf2c3932f2203a..33936c2155d034f445693006c50adbfd0ad5f036:/common/iso14443crc.c diff --git a/common/iso14443crc.c b/common/iso14443crc.c index a6def1a9..d07a2871 100644 --- a/common/iso14443crc.c +++ b/common/iso14443crc.c @@ -8,7 +8,7 @@ #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));