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