X-Git-Url: https://git.zerfleddert.de/cgi-bin/gitweb.cgi/proxmark3-svn/blobdiff_plain/75465377b93c9a27450a186342e9cfd2a84b4173..7d2692658b598c449320fbaef6ea9612e214c1fd:/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