X-Git-Url: https://git.zerfleddert.de/cgi-bin/gitweb.cgi/proxmark3-svn/blobdiff_plain/024b97c5076d1c644fe84b250882569923b67c0c..65cdf0e3f9598e17c7cd0570ca616f51eec11725:/common/crc16.h

diff --git a/common/crc16.h b/common/crc16.h
index d16d83b5..3db2cd79 100644
--- a/common/crc16.h
+++ b/common/crc16.h
@@ -5,11 +5,14 @@
 //-----------------------------------------------------------------------------
 // CRC16
 //-----------------------------------------------------------------------------
-#include <stdint.h>
-
 #ifndef __CRC16_H
 #define __CRC16_H
+
+#include <stdint.h>
+#include "util.h"
+
 unsigned short update_crc16(unsigned short crc, unsigned char c);
 uint16_t crc16(uint8_t const *message, int length, uint16_t remainder, uint16_t polynomial);
 uint16_t crc16_ccitt(uint8_t const *message, int length);
+uint16_t crc16_ccitt_kermit(uint8_t const *message, int length);
 #endif