X-Git-Url: https://git.zerfleddert.de/cgi-bin/gitweb.cgi/proxmark3-svn/blobdiff_plain/b5be31f9967700a184adce27d2eb172d5cc89989..793c30125088b0e8e4cf3548cb852ac71efd505c:/common/crc32.c diff --git a/common/crc32.c b/common/crc32.c index 69d770f4..bdf7b230 100644 --- a/common/crc32.c +++ b/common/crc32.c @@ -1,11 +1,8 @@ -#include -#include #include "crc32.h" #define htole32(x) (x) #define CRC32_PRESET 0xFFFFFFFF - static void crc32_byte (uint32_t *crc, const uint8_t value); static void crc32_byte (uint32_t *crc, const uint8_t value) { @@ -32,4 +29,4 @@ void crc32 (const uint8_t *data, const size_t len, uint8_t *crc) { void crc32_append (uint8_t *data, const size_t len) { crc32 (data, len, data + len); -} +} \ No newline at end of file